Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to call a VFP SP
Message
 
 
To
12/04/2005 12:17:09
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01003790
Message ID:
01003836
Views:
23
This message has been marked as the solution to the initial question of the thread.
ors = oConn.Execute('GetUser()')
? oRs.Fields(0).Value
>>>I have a VFP stored procedure in my VFP database named as: GetUser() which returns a string (xml). I am not accessing the VFP database directly and use ODBC to connect to it, can I use SQLEXEC() to call the stored procedure and accept the string?
>>
>>No, you cannot. You've to use VFP OLE DB provoder.
>
>How do I get the returned string from the Ado object? Looking at the ADO object, I don't see a property where the results might be stored. The simplest implementation I can think of is:
>
>xx=""
>numericValIsReturned = 0
>oConn = createobject('ADODB.Connection')
>cConnString = "Provider=vfpoledb.1;Data Source=Test.dbc"
>oConn.Open(cConnString)
>oConn.Execute('GetUser()') && How do I capture the returned string?
>oConn.Execute('GetUser()',@xx) && Returns number of rows?
>oConn.Execute('GetUser()',@xx,@numericValIsReturned) && Returns a numeric value?
>oConn.Close()
>?xx,numericValIsReturned
>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform