theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Info_CS_API

Sq3LiteC - get informationMore...

+ Collaboration diagram for Sq3LiteC_Info_CS_API:

Functions

int cssq3lite.Sq3LiteC.GetAutocommit ()
  C#: int sq3lite.GetAutocommit() C-API
Test For Auto-Commit Mode …
 
long cssq3lite.Sq3LiteC.LastInsertRowid ()
  C#: long sq3lite.LastInsertRowid() C-API
Last Insert Rowid …
 
void cssq3lite.Sq3LiteC.TxnState (string zSchema)
  C#: sq3lite.TxnState(string zSchema) C-API
Determine the transaction state of a database …
 
void cssq3lite.Sq3LiteC.VtabOnConflict ()
  C#: sq3lite.VtabOnConflict() C-API
Determine The Virtual Table Conflict Policy …
 

Detailed Description

Sq3LiteC - get information

Function Documentation

◆ GetAutocommit()

int cssq3lite.Sq3LiteC.GetAutocommit ( )
inline

C#: int sq3lite.GetAutocommit() C-API
Test For Auto-Commit Mode …

Definition at line 309 of file Sq3LiteC_cs.cs.

309 {
310 Int32 __retVal__L = Sq3.Sq3LiteGetAutocommit(hdl);
311 return __retVal__L;
312 }

◆ LastInsertRowid()

long cssq3lite.Sq3LiteC.LastInsertRowid ( )
inline

C#: long sq3lite.LastInsertRowid() C-API
Last Insert Rowid …

Definition at line 315 of file Sq3LiteC_cs.cs.

315 {
316 Int64 __retVal__L = Sq3.Sq3LiteLastInsertRowid(hdl);
317 return __retVal__L;
318 }

◆ TxnState()

void cssq3lite.Sq3LiteC.TxnState ( string zSchema)
inline

C#: sq3lite.TxnState(string zSchema) C-API
Determine the transaction state of a database …

Definition at line 321 of file Sq3LiteC_cs.cs.

321 {
322 IntPtr zSchema_cstr = Marshal.StringToHGlobalAnsi(zSchema);
323 MkErrorE errVal = Sq3.Sq3LiteTxnState(hdl, zSchema_cstr);
324 Marshal.FreeHGlobal(zSchema_cstr);
325 MkErrorC.Check(hdl, errVal);
326 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE

◆ VtabOnConflict()

void cssq3lite.Sq3LiteC.VtabOnConflict ( )
inline

C#: sq3lite.VtabOnConflict() C-API
Determine The Virtual Table Conflict Policy …

Definition at line 329 of file Sq3LiteC_cs.cs.

329 {
330 MkErrorE errVal = Sq3.Sq3LiteVtabOnConflict(hdl);
331 MkErrorC.Check(hdl, errVal);
332 }