Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Gow to get the datetime() from VFP database server
Message
De
02/09/2002 04:21:21
 
 
À
30/08/2002 07:58:08
Information générale
Forum:
Visual FoxPro
Catégorie:
Client/serveur
Divers
Thread ID:
00695304
Message ID:
00695893
Vues:
12
Thanks Glen, Hilmar

Glen i need client running remotly on the network where VFP database is located and am not sure that your solution will work but i learned that VFP OLE DB provider can support Stored procedure which will sort out my problem.
Except i don't know how to call stored procedure through code

I came so far with this :

loConnection = CREATEOBJECT('ADODB.Connection')
WITH loConnection
.Provider = "VFPOLEDB.1" && "sqloledb"
.CursorLocation = adUseClient && 3
.OPEN("DSN=WGSMS")
ENDWITH

loRecSet = CREATEOBJECT('ADODB.Recordset')
lcQuery = "execute get_time"
loRecSet.OPEN(lcQuery ,loConnection)

lcQuery = "CALL get_time" also doesn't work.

My stored procedure will be simple

FUNCTION get_time

return datetime()

If i can call SP via OLEDB that would sort out my problems.

Any ideas.

Thanks

Dejan
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform