Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
VFP set statements
Message
De
05/02/2003 07:51:54
Geert Van Snik
Zorgned Automatisering Bv
Wageningen, Pays-Bas
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Titre:
VFP set statements
Divers
Thread ID:
00749295
Message ID:
00749295
Vues:
67
Dear ut-user,

I would like to know if it is possible to run VFP set statements (set exact on, set ansi on) via the ADO.NET command object. I have made an attempt, but no luck, alas.

What am I doing wrong here?

myCon.ConnectionString = CFH.getConnectionString(); // external helper.
string sql = "runsetstatements()"; // vfp storedproc that executes.
OleDbCommand myCom = new OleDbCommand(sql,myCon);
myCon.Open();
myCom.ExecuteNonQuery();
sql = "SELECT * FROM zorglevr WHERE zoeknaam='B'";
myCom.CommandText = sql;
myRdr = myCom.ExecuteReader(CommandBehavior.CloseConnection);

The reader keeps returning results that it shouldn't accourding to the set statements. Perhaps, my approach is just totally wrong.

Thanks for giving attention to my problem.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform