but it fails because the embedded WHERE clause is no longer catching
the row. It is still looking for

WHERE LastName='Doe' AND
  FirstName='John' AND
  Address='100 Nowhere Ave.' AND
  Age=45;

instead of

WHERE LastName='Doe' AND
  FirstName='Jane' AND
  Address='100 Nowhere Ave.' AND
  Age=45;




Yeah I think you're right. I changed the code to *not* use the bind
functions, and just dump the values directly into the SQL statement (
I think this was a case of me trying to be too clever), and that works
like a charm now.
So I guess the moral of this is to use bind cautiously :)

Cheers

Jim

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to