Hi Monks,
A question.
I have some code where Im using Bind variables in an update.
Ive built the code with a bit of sql such as
UPDATE table
SET value = 'X'
WHERE field1 = ?
AND field2 = ?
AND field3 = ?
Now I fill this in with $sth->execute(@array).
This doesnt seem to update any rows.
Yet when I cut and past the array values into sql works???
Is this something to do with nulls or what?????
Sorry if a bit vague, but not sure where problem is???
Kevman