theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Row_CS_API

Sq3LiteC - work with a rowMore...

+ Collaboration diagram for Sq3LiteC_Row_CS_API:

Functions

int cssq3lite.Sq3LiteC.Changes ()
  C#: int sq3lite.Changes() C-API
Count The Number Of Rows Modified …
 
long cssq3lite.Sq3LiteC.Changes64 ()
  C#: long sq3lite.Changes64() C-API
Count The Number Of Rows Modified …
 
void cssq3lite.Sq3LiteC.SetLastInsertRowid (long arg1)
  C#: sq3lite.SetLastInsertRowid(long arg1) C-API
Set the Last Insert Rowid value …
 
int cssq3lite.Sq3LiteC.TotalChanges ()
  C#: int sq3lite.TotalChanges() C-API
Total Number Of Rows Modified …
 
long cssq3lite.Sq3LiteC.TotalChanges64 ()
  C#: long sq3lite.TotalChanges64() C-API
Total Number Of Rows Modified …
 

Detailed Description

Sq3LiteC - work with a row

Function Documentation

◆ Changes()

int cssq3lite.Sq3LiteC.Changes ( )
inline

C#: int sq3lite.Changes() C-API
Count The Number Of Rows Modified …

Definition at line 538 of file Sq3LiteC_cs.cs.

538 {
539 Int32 __retVal__L = Sq3.Sq3LiteChanges(hdl);
540 return __retVal__L;
541 }

◆ Changes64()

long cssq3lite.Sq3LiteC.Changes64 ( )
inline

C#: long sq3lite.Changes64() C-API
Count The Number Of Rows Modified …

Definition at line 544 of file Sq3LiteC_cs.cs.

544 {
545 Int64 __retVal__L = Sq3.Sq3LiteChanges64(hdl);
546 return __retVal__L;
547 }

◆ SetLastInsertRowid()

void cssq3lite.Sq3LiteC.SetLastInsertRowid ( long arg1)
inline

C#: sq3lite.SetLastInsertRowid(long arg1) C-API
Set the Last Insert Rowid value …

Definition at line 550 of file Sq3LiteC_cs.cs.

550 {
551 Sq3.Sq3LiteSetLastInsertRowid(hdl, arg1);
552 }

◆ TotalChanges()

int cssq3lite.Sq3LiteC.TotalChanges ( )
inline

C#: int sq3lite.TotalChanges() C-API
Total Number Of Rows Modified …

Definition at line 555 of file Sq3LiteC_cs.cs.

555 {
556 Int32 __retVal__L = Sq3.Sq3LiteTotalChanges(hdl);
557 return __retVal__L;
558 }

◆ TotalChanges64()

long cssq3lite.Sq3LiteC.TotalChanges64 ( )
inline

C#: long sq3lite.TotalChanges64() C-API
Total Number Of Rows Modified …

Definition at line 561 of file Sq3LiteC_cs.cs.

561 {
562 Int64 __retVal__L = Sq3.Sq3LiteTotalChanges64(hdl);
563 return __retVal__L;
564 }