Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I execute a VFP Stored Procedure using OLEDB
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00727658
Message ID:
00727978
Views:
15
This message has been marked as a message which has helped to the initial question of the thread.
Hi Bret.

>So my question is what do I need to provide to the oCommand object to execute my Stored Procedure called GetKey (with the table name parameter) and get the key returned to me?

Use code similar to the following:
oCommand.CommandType = 8  && adCmdUnknown
oCommand.CommandText = "GetKey()"
oRS = oCommand.Execute()
lnNewKey = oRS.Fields('Return_Value').Value
Doug
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform