Méthode Api.JetUpdate (JET_SESID, JET_TABLEID)
La fonction JetUpdate effectue une opération de mise à jour incluant l’insertion d’une nouvelle ligne dans une table ou la mise à jour d’une ligne existante. La suppression d’une ligne de table s’effectue en appelant JetDelete(JET_SESID, JET_TABLEID).
Namespace:Microsoft.Isam.Esent.Interop
Assemblée: Microsoft.Isam.Esent.Interop (en Microsoft.Isam.Esent.Interop.dll)
Syntaxe
'Declaration
Public Shared Sub JetUpdate ( _
sesid As JET_SESID, _
tableid As JET_TABLEID _
)
'Usage
Dim sesid As JET_SESID
Dim tableid As JET_TABLEIDApi.JetUpdate(sesid, tableid)
public static void JetUpdate(
JET_SESID sesid,
JET_TABLEID tableid
)
Paramètres
sesid
Type : Microsoft.Isam.Esent.Interop.JET_SESIDSession qui a démarré la mise à jour.
tableid
Type : Microsoft.Isam.Esent.Interop.JET_TABLEIDCurseur à mettre à jour. Une mise à jour doit être préparée.
Notes
JetUpdate est la dernière étape de l’exécution d’une insertion ou d’une mise à jour. La mise à jour commence en appelant JetPrepareUpdate(JET_SESID, JET_TABLEID, JET_prep), puis en appelant JetSetColumn(JET_SESID, JET_TABLEID, JET_COLUMNID, [], Int32, SetColumnGrbit, JET_SETINFO) une ou plusieurs fois pour définir l’état de l’enregistrement. Enfin, JetUpdate(JET_SESID, JET_TABLEID, [], Int32, Int32) est appelé pour terminer l’opération de mise à jour. Les index sont mis à jour uniquement par JetUpdate ou pas pendant JetSetColumn.