CFQUERY Question
Hi,
I have never seen this happen but it seems to be happening to me. I have a query that does an insert into my database but for some reason ColdFusion is putting the values in the wrong columns. Example:
INSERT INTO TableA (
first_name,
last_name,
)
VALUES (
'john',
'doe',
'jdoe@test.com'
)
For some reason strange reason my data gets inserted into the wrong column. For example, the first_name column gets the email address as opposed to 'john'.
I dumped the SQL statement that CF is trying to execute and you can clearly see the values are going to the wrong columns, I just don't know why.
I am using CF8.
Anyone seen anything like this?
-westside
