Struct to represent the data of the Sq3StmtC … More...
#include <Sq3StmtC_def_sq3.h>
Public Attributes | ||
union { | ||
struct MkObjectS obj | ||
} | super | |
sqlite3_stmt * | nat | |
internal - link between Sq3StmtS and native library | ||
MK_STRN | pzTail | |
The non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3 … | ||
Struct to represent the data of the Sq3StmtC …
Prepared Statement Object …
An instance of this object represents a single SQL statement that has been compiled into binary form and is ready to be evaluated.
Think of each SQL statement as a separate computer program. The original SQL text is source code. A prepared statement object is the compiled object code. All SQL must be converted into a prepared statement before it can be run.
The life-cycle of a prepared statement object usually goes like this:
Reference code from sqlite3:
Definition at line 39 of file Sq3StmtC_def_sq3.h.
sqlite3_stmt* Sq3StmtS::nat |
internal - link between Sq3StmtS and native library
Definition at line 50 of file Sq3StmtC_def_sq3.h.
struct MkObjectS Sq3StmtS::obj |
Definition at line 43 of file Sq3StmtC_def_sq3.h.
MK_STRN Sq3StmtS::pzTail |
The non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3 …
Use Sq3StmtGetPzTail to get the string or MK_NULL_STR.
Definition at line 58 of file Sq3StmtC_def_sq3.h.
union { ... } Sq3StmtS::super |