Ask a Question related to Coldfusion Database Access, Design and Development.
-
VJIN #1
Access query fails after upgrade to MX 7.1
After upgrading to ColdFusion MX 7.1, the following query (against an Access
2000 database) errors out on the *** field when running the ColdFusion
application displaying error: ?Too few parameters. Expected 1? message.
We first thought it was the length of the field name, but we have other field
names that are longer (I?ve removed them for this sample). When we remove this
field name from the query the query works.
I have another similar query using the same field name and it fails there as
well.
This code has been running on MX 6.1 for several years. Any suggestions?
<CFQUERY NAME="AuditLog" DATASOURCE="Contracts">
SELECT AUTONUMBER,
TRACKING_DATE,
AuditLog.EntityID,
[ENTITY ADDRESS INFO].[ENTITY NAME] As EntityName,
[CONTRACT AMOUNT] AS AMOUNT,
[CONTRACT PERIOD] AS STARTING,
ENDING,
*** [CONTRACT FROM FIELD WITH SIGNATURE] AS FRFIELD,
COMMENTS,
JUSTIFICATION_MONEY AS SERVICE
FROM [ENTITY ADDRESS INFO] INNER JOIN AuditLog ON ([ENTITY ADDRESS
INFO].EntityId = AuditLog.EntityID) AND ([ENTITY ADDRESS INFO].EntityId =
AuditLog.EntityID)
WHERE autonumber = #url.autonumber#
</CFQUERY>
Thanks
VJ
VJIN Guest
-
MS Access Query Search Fails on Boolean
I have a query that I would like to search on where my field is a boolean. This is the error and the sql statment below, Error: No value given... -
Impersonation fails after upgrade to .NET 1.1 Framework
I have developed and ASP.NET application that uses the aadvapi32.dll to impersonate a domain user to gain access to files on a different server. The... -
apt-get dist-upgrade, now gnome session fails to login
On Sun, Jul 27, 2003 at 11:35:58AM -0400, stan wrote: You probably want bits of GNOME from unstable. -- Colin Watson ... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
Sun PCI fails after O/S upgrade
I have been using Sun PCI on an Ultra 5 for some time (the older 300MHz card) with no problems, running both 98 and NT. I've upgraded the O/S from... -
paross1 #2
Re: Access query fails after upgrade to MX 7.1
This is just a guess, but it is probably finding the FROM after CONTRACT and
stopping there. If you could change this column name, or at least join the
words with an underscore, you will probably fix the problem.
By the way, who was the database genius that came up with the column names?
There should a place in hell reserved for him/her. :evil;
Phil
paross1 Guest



Reply With Quote

