Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Call Vfp Database StoreProc with Parameter
Message
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Titre:
Call Vfp Database StoreProc with Parameter
Divers
Thread ID:
00703020
Message ID:
00703020
Vues:
74
Hi Guys,

I want to call a vfp store procedure with parameter and it always give me a ole exception code...

Thank's for your help.

That's the code i try. Do you saw something Wrong...
OleDbConnection oCon = new OleDbConnection(@"provider=vfpoledb;data source=C:\Devellopement\Data\Video.dbc");
			
OleDbCommand poCmd = new OleDbCommand();
poCmd.Connection = oCon;
poCmd.CommandText = "[test]";
poCmd.CommandType = CommandType.StoredProcedure;

OleDbParameter x = new OleDbParameter("@psParam",OleDbType.VarChar);
x.Value = "Salut";
poCmd.Parameters.Add(x);
			
poCmd.Connection.Open();
string y  = poCmd.ExecuteScalar().ToString();
Vfp SP code...
PROCEDURE Test(psParam as String) as String
	RETURN psParam
ENDPROC
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform