Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Return GUID key auto-generated in SQL Server
Message
From
21/06/2004 02:26:22
Suhas Hegde
Dental Surgeon
Sirsi, India
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00915487
Message ID:
00915568
Views:
13
>I know this question has been asked a dozen times before, but I can't seem to locate the answer.
>
>My SQL table auto-generates a GUID primary key for newly inserted records. Is there a way for me to grab that value during or after my insert statement?
>
>TIA

Hi not sure If the right way and if this is the way u are looking for but works for me
SQLExec(han,"declare @myvar uniqueidentifier "+;
"set @myvar = newid() "+;
"insert into <mytable> (guid_colmn,anotherfield) values(@myvar,'abcd') " +;
"select @myvar","theguid")
HTHs

suhas
Previous
Reply
Map
View

Click here to load this message in the networking platform