vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, I'm writing a website with Cold Fusion and when a user submits a request and it's stored in the MS SQL database, I want the unique ID (Identity field in table) to be given to the user on screen plus emailed to user. Now can I store data to the database (where the ID is created) and return this as a variable in the same statement? I've seen this done on many websites, but I have no idea how to do it in one step. Thanks, Alex. |
| ||||
| Return to the user the value from @@identity (check this out in the BOL). You can also have SQL trigger off the email if this fits within your project's stated performance requirements. Send the email via xp_smtp_sendmail(http://sqldev.net/xp/xpsmtp.htm) But basically your requirement to do it in 1 step could all be handled with a stored procedure. hth Eric "Alex" <alex@totallynerd.com> wrote in message news:2ba4b4eb.0401291136.6ec0ee16@posting.google.c om... > Hi all, > > I'm writing a website with Cold Fusion and when a user submits a > request and it's stored in the MS SQL database, I want the unique ID > (Identity field in table) to be given to the user on screen plus > emailed to user. > > Now can I store data to the database (where the ID is created) and > return this as a variable in the same statement? I've seen this done > on many websites, but I have no idea how to do it in one step. > > Thanks, > > Alex. |