Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to call a VFP SP
Message
From
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:
01003825
Views:
18
>>Hi all,
>>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
ramil
~~ learning to stand still
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform