Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Oracle and FOxPro - Calling stored procs
Message
De
17/05/2001 18:59:07
Christian Cote
Les Logiciels Onoma Inc.
Longueuil, Québec, Canada
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Client/serveur
Divers
Thread ID:
00508447
Message ID:
00508545
Vues:
18
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform