Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
OLEDB Command completion
Message
De
07/03/2011 08:57:25
 
 
À
07/03/2011 08:38:52
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
C# 3.0
Divers
Thread ID:
01502804
Message ID:
01502830
Vues:
39
Michel

Thank you for your reply.

This is a free VFP table with no primary key or autoinc column
I just want to know that the insertion has been completed before moving on to the next instruction




>I want to be sure that a row has been inserted in an OLEDB VFP table before proceeding to the next instruction.
>Does ExecuteNonQuery complete the OLEDB command before continuing to the next instruction?
>If not, what's the best way to be sure that the row has been inserted before proceeding?

Once you have done this:

oDataAdapter.SelectCommand.ExecuteNonQuery()

You can do this to get the primary key:

oCommand.CommandText = "GETAUTOINCVALUE(0)"
oCommand.CommandType = CommandType.StoredProcedure
nPrimaryKey = CInt(oCommand.ExecuteScalar())

Where oDataAdapter and oCommand represent your object to their respective classes.
Anyone who does not go overboard- deserves to.
Malcolm Forbes, Sr.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform