Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Oracle and FOxPro - Calling stored procs
Message
From
17/05/2001 18:59:07
Christian Cote
Les Logiciels Onoma Inc.
Longueuil, Quebec, Canada
 
General information
Forum:
Visual FoxPro
Category:
Client/server
Miscellaneous
Thread ID:
00508447
Message ID:
00508545
Views:
17
I did not try with SPT but I did it successfully with ADO. Maybe you could try this :

*************************************
** Description of variables used **
* h = handle
* ORADSN = datasource name
* USERID = user id
* PWD = password
**************************************

h=SQLConnect("ORADSN","USERID","PWD") && Establish a connection

IF h > 0

WAIT WINDOW "Connection Successful" NOWAIT
=SQLExec(h,"{Call SP_MYPROC}") && Execute the stored procedure
=SQLDisconnect(h) && Terminate the connection

ELSE

WAIT WINDOW "Connection Failed"

ENDIF
I found it on MSDN.

HTH,
Christian Cote
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform