RE: Is this SQL trick possible

2001-11-15 Thread Tammy Hong
Couldn't you grab the value of the field with the onBlur event using JS? I think that is very plausible. -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 9:58 AM To: CF-Talk Subject: Is this SQL trick possible Is there anyway

Is this SQL trick possible

2001-11-15 Thread Robert Everland
Is there anyway I can get the value of a field that I update without having to do a query first. Robert Everland III Dixon Ticonderoga ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the

RE: Is this SQL trick possible

2001-11-15 Thread Craig Dudley
2001 15:58 To: CF-Talk Subject: Is this SQL trick possible Is there anyway I can get the value of a field that I update without having to do a query first. Robert Everland III Dixon Ticonderoga ~~ Get the mailserver that powers this list

RE: Is this SQL trick possible

2001-11-15 Thread Gantz, Shlomy
you can update and then create a trigger to select the record that was updated. Shlomy -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 11:07 AM To: CF-Talk Subject: RE: Is this SQL trick possible erm, can't you do the update

Re: Is this SQL trick possible

2001-11-15 Thread Alex
yes. update tableA set fieldA = 1 since YOU are updateing the table you already know what the value will be. Of course, you could clarify your question. On Thu, 15 Nov 2001, Robert Everland wrote: Is there anyway I can get the value of a field that I update without having to do a