theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
Sq3StmtC_Info_PY_API

Sq3StmtC - get type-informationMore...

+ Collaboration diagram for Sq3StmtC_Info_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3StmtC_DbHandle (Sq3StmtC_ARGS)
  Python: Sq3LiteC sq3stmt.DbHandle() C-API
Find The Database Handle Of A Prepared Statement …
 
static OT_ProcRet pysq3lite_Sq3StmtC_Busy (Sq3StmtC_ARGS)
  Python: sq3stmt.Busy() C-API
Determine If A Prepared Statement Has Been Reset …
 
static OT_ProcRet pysq3lite_Sq3StmtC_DataCount (Sq3StmtC_ARGS)
  Python: pStmt.DataCount() C-API
Number of columns in a result set …
 
static OT_ProcRet pysq3lite_Sq3StmtC_IsExplain (Sq3StmtC_ARGS)
  Python: pStmt.IsExplain() C-API
Query The EXPLAIN Setting For A Prepared Statement …
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3StmtC_Log (Sq3StmtC_ARGS)
 
static OT_ProcRet pysq3lite_Sq3StmtC_Readonly (Sq3StmtC_ARGS)
  Python: pStmt.Readonly() C-API
Determine If An SQL Statement Writes The Database …
 
static OT_ProcRet pysq3lite_Sq3StmtC_Status (Sq3StmtC_ARGS)
  Python: sq3stmt.Status(op:Sq3StmtStatusE, resetFlg:bool) C-API
Prepared Statement Status …
 

Detailed Description

Sq3StmtC - get type-information

Function Documentation

◆ pysq3lite_Sq3StmtC_Busy()

static OT_ProcRet pysq3lite_Sq3StmtC_Busy ( Sq3StmtC_ARGS )
static

Python: sq3stmt.Busy() C-API
Determine If A Prepared Statement Has Been Reset …

Definition at line 676 of file Sq3StmtC_py.c.

676 {
680 MkErrorC_Check(hdl,Sq3StmtBusy (hdl));
682 goto end;
683 error:
685 end:
687}
#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
Definition Sq3StmtC_py.c:26
#define Busy_doc
static enum MkErrorE Sq3StmtBusy(SQ3_STMT sq3stmt)
Determine If A Prepared Statement Has Been Reset …

◆ pysq3lite_Sq3StmtC_DataCount()

static OT_ProcRet pysq3lite_Sq3StmtC_DataCount ( Sq3StmtC_ARGS )
static

Python: pStmt.DataCount() C-API
Number of columns in a result set …

Definition at line 690 of file Sq3StmtC_py.c.

690 {
696 goto end;
697 error:
699 end:
701}
#define DataCount_doc
static enum MkErrorE Sq3StmtDataCount(SQ3_STMT pStmt)
Number of columns in a result set …

◆ pysq3lite_Sq3StmtC_DbHandle()

static OT_ProcRet pysq3lite_Sq3StmtC_DbHandle ( Sq3StmtC_ARGS )
static

Python: Sq3LiteC sq3stmt.DbHandle() C-API
Find The Database Handle Of A Prepared Statement …

Definition at line 660 of file Sq3StmtC_py.c.

660 {
664 SQ3_LITE retVal = Sq3StmtDbHandle (hdl);
665 OT_retObj_SET_LITE(retVal);
666 goto end;
667 error:
669 end:
671}
#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 …

◆ pysq3lite_Sq3StmtC_IsExplain()

static OT_ProcRet pysq3lite_Sq3StmtC_IsExplain ( Sq3StmtC_ARGS )
static

Python: pStmt.IsExplain() C-API
Query The EXPLAIN Setting For A Prepared Statement …

Definition at line 704 of file Sq3StmtC_py.c.

704 {
710 goto end;
711 error:
713 end:
715}
#define IsExplain_doc
static enum MkErrorE Sq3StmtIsExplain(SQ3_STMT pStmt)
Query The EXPLAIN Setting For A Prepared Statement …

◆ pysq3lite_Sq3StmtC_Log()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3StmtC_Log ( Sq3StmtC_ARGS )
static

Definition at line 719 of file Sq3StmtC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pysq3lite_Sq3StmtC_Readonly()

static OT_ProcRet pysq3lite_Sq3StmtC_Readonly ( Sq3StmtC_ARGS )
static

Python: pStmt.Readonly() C-API
Determine If An SQL Statement Writes The Database …

Definition at line 722 of file Sq3StmtC_py.c.

722 {
728 goto end;
729 error:
731 end:
733}
#define Readonly_doc
static enum MkErrorE Sq3StmtReadonly(SQ3_STMT pStmt)
Determine If An SQL Statement Writes The Database …

◆ pysq3lite_Sq3StmtC_Status()

static OT_ProcRet pysq3lite_Sq3StmtC_Status ( Sq3StmtC_ARGS )
static

Python: sq3stmt.Status(op:Sq3StmtStatusE, resetFlg:bool) C-API
Prepared Statement Status …

Definition at line 736 of file Sq3StmtC_py.c.

736 {
739 enum Sq3StmtStatusE op = 0;
741 MK_BOOL resetFlg = 0;
744 MkErrorC_Check(hdl,Sq3StmtStatus (hdl, op, resetFlg));
746 goto end;
747 error:
749 end:
751}
#define OT_CHECK_bool(val)
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_REQUIRED(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 …
#define OT_CHECK_ENUM(ename, val)