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

RE: Is this SQL trick possible

2001-11-15 Thread Craig Dudley
erm, can't you do the update and a select in the same cfquery block? If your'e using SQLserver u can anyway, as long as the cfquery only returns one recordset, e.g. - cfquery name=test datasource=#request.dsn# begin transaction update tblTable set value1=1 where id=1; select

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