theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Info_TCL_API

Sq3StmtC - get type-informationMore...

+ Collaboration diagram for Sq3StmtC_Info_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3StmtC_DbHandle (Sq3StmtC_ARGS)
  Tcl: Sq3LiteC [$sq3stmt DbHandle] C-API
Find The Database Handle Of A Prepared Statement …
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Busy (Sq3StmtC_ARGS)
  Tcl: $sq3stmt Busy C-API
Determine If A Prepared Statement Has Been Reset …
 
static OT_ProcRet tclsq3lite_Sq3StmtC_DataCount (Sq3StmtC_ARGS)
  Tcl: $pStmt DataCount C-API
Number of columns in a result set …
 
static OT_ProcRet tclsq3lite_Sq3StmtC_IsExplain (Sq3StmtC_ARGS)
  Tcl: $pStmt IsExplain C-API
Query The EXPLAIN Setting For A Prepared Statement …
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3StmtC_Log (Sq3StmtC_ARGS)
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Readonly (Sq3StmtC_ARGS)
  Tcl: $pStmt Readonly C-API
Determine If An SQL Statement Writes The Database …
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Status (Sq3StmtC_ARGS)
  Tcl: $sq3stmt Status op:Sq3StmtStatusE resetFlg:bool C-API
Prepared Statement Status …
 

Detailed Description

Sq3StmtC - get type-information

Function Documentation

◆ tclsq3lite_Sq3StmtC_Busy()

static OT_ProcRet tclsq3lite_Sq3StmtC_Busy ( Sq3StmtC_ARGS )
static

Tcl: $sq3stmt Busy C-API
Determine If A Prepared Statement Has Been Reset …

Definition at line 687 of file Sq3StmtC_tcl.c.

687 {
691 MkErrorC_Check(hdl,Sq3StmtBusy (hdl));
693 goto end;
694 error:
696 end:
698}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_SET_None
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define MkErrorC_Check(mng, PROC)
#define OT_SETUP_hdl
#define Busy_doc
static enum MkErrorE Sq3StmtBusy(SQ3_STMT sq3stmt)
Determine If A Prepared Statement Has Been Reset …

◆ tclsq3lite_Sq3StmtC_DataCount()

static OT_ProcRet tclsq3lite_Sq3StmtC_DataCount ( Sq3StmtC_ARGS )
static

Tcl: $pStmt DataCount C-API
Number of columns in a result set …

Definition at line 701 of file Sq3StmtC_tcl.c.

701 {
707 goto end;
708 error:
710 end:
712}
#define DataCount_doc
static enum MkErrorE Sq3StmtDataCount(SQ3_STMT pStmt)
Number of columns in a result set …

◆ tclsq3lite_Sq3StmtC_DbHandle()

static OT_ProcRet tclsq3lite_Sq3StmtC_DbHandle ( Sq3StmtC_ARGS )
static

Tcl: Sq3LiteC [$sq3stmt DbHandle] C-API
Find The Database Handle Of A Prepared Statement …

Definition at line 671 of file Sq3StmtC_tcl.c.

671 {
675 SQ3_LITE retVal = Sq3StmtDbHandle (hdl);
676 OT_retObj_SET_LITE(retVal);
677 goto end;
678 error:
680 end:
682}
#define OT_retObj_SET_LITE(nat)
#define DbHandle_doc
static SQ3_LITE Sq3StmtDbHandle(SQ3_STMT sq3stmt)
Find The Database Handle Of A Prepared Statement …
Struct to represent the data of the Sq3LiteC …

◆ tclsq3lite_Sq3StmtC_IsExplain()

static OT_ProcRet tclsq3lite_Sq3StmtC_IsExplain ( Sq3StmtC_ARGS )
static

Tcl: $pStmt IsExplain C-API
Query The EXPLAIN Setting For A Prepared Statement …

Definition at line 715 of file Sq3StmtC_tcl.c.

715 {
721 goto end;
722 error:
724 end:
726}
#define IsExplain_doc
static enum MkErrorE Sq3StmtIsExplain(SQ3_STMT pStmt)
Query The EXPLAIN Setting For A Prepared Statement …

◆ tclsq3lite_Sq3StmtC_Log()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3StmtC_Log ( Sq3StmtC_ARGS )
static

Definition at line 730 of file Sq3StmtC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclsq3lite_Sq3StmtC_Readonly()

static OT_ProcRet tclsq3lite_Sq3StmtC_Readonly ( Sq3StmtC_ARGS )
static

Tcl: $pStmt Readonly C-API
Determine If An SQL Statement Writes The Database …

Definition at line 733 of file Sq3StmtC_tcl.c.

733 {
739 goto end;
740 error:
742 end:
744}
#define Readonly_doc
static enum MkErrorE Sq3StmtReadonly(SQ3_STMT pStmt)
Determine If An SQL Statement Writes The Database …

◆ tclsq3lite_Sq3StmtC_Status()

static OT_ProcRet tclsq3lite_Sq3StmtC_Status ( Sq3StmtC_ARGS )
static

Tcl: $sq3stmt Status op:Sq3StmtStatusE resetFlg:bool C-API
Prepared Statement Status …

Definition at line 747 of file Sq3StmtC_tcl.c.

747 {
750 enum Sq3StmtStatusE op = 0;
752 MK_BOOL resetFlg = 0;
755 MkErrorC_Check(hdl,Sq3StmtStatus (hdl, op, resetFlg));
757 goto end;
758 error:
760 end:
762}
#define OT_CHECK_bool(val)
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_REQUIRED(val)
#define OT_CHECK_ENUM(ename, val)
#define Status_doc
bool MK_BOOL
Sq3StmtStatusE
Status Parameters for prepared statements.
static enum MkErrorE Sq3StmtStatus(SQ3_STMT sq3stmt, enum Sq3StmtStatusE op, MK_BOOL resetFlg)
Prepared Statement Status …