Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP with SQL Server -- Pkey
Message
From
16/01/2001 14:09:06
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00464309
Message ID:
00464324
Views:
15
Okay. Here it is:

* get the handle and get the @@identity number
lnSQLHandle = cursorgetprop('ConnectHandle', (lctable))
* requery the table with the identity parameter for this record
lnUpdated = sqlexe(lnSQLHandle, 'Select @@Identity', 'sqlresult')
If lnUpdated <= 0
msg = "Identity value was not found -- call a programmer now"
messagebox(msg, 0+16+0, "Identity Value Failure")
aerror(aSqlError)
list memory like aSqlError noconsole to print
else
oVar.PrimaryKey = sqlresult.exp
select (lctable)
lnUpdated = requery()
If lnUpdated <=0
msg = "Verification Requery Failed -- call a programmer now"
messagebox(msg, 0+16+0, "Validation Requery Error")
aerror(aSqlError)
list memory like aSqlError noconsole to print
else
endif
endif
Thanks in Advance.

J. Turner
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform