theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Info_ATL_API

Sq3StmtC - get type-informationMore...

+ Collaboration diagram for Sq3StmtC_Info_ATL_API:

Functions

static OT_ProcRet atlsq3lite_Sq3StmtC_DbHandle (Sq3StmtC_ARGS)
  Atl: Sq3LiteC [Sq3StmtC::DbHandle $sq3stmt] C-API
Find The Database Handle Of A Prepared Statement …
 
static OT_ProcRet atlsq3lite_Sq3StmtC_Busy (Sq3StmtC_ARGS)
  Atl: Sq3StmtC::Busy $sq3stmt C-API
Determine If A Prepared Statement Has Been Reset …
 
static OT_ProcRet atlsq3lite_Sq3StmtC_DataCount (Sq3StmtC_ARGS)
  Atl: Sq3StmtC::DataCount $pStmt C-API
Number of columns in a result set …
 
static OT_ProcRet atlsq3lite_Sq3StmtC_IsExplain (Sq3StmtC_ARGS)
  Atl: Sq3StmtC::IsExplain $pStmt C-API
Query The EXPLAIN Setting For A Prepared Statement …
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet atlsq3lite_Sq3StmtC_Log (Sq3StmtC_ARGS)
 
static OT_ProcRet atlsq3lite_Sq3StmtC_Readonly (Sq3StmtC_ARGS)
  Atl: Sq3StmtC::Readonly $pStmt C-API
Determine If An SQL Statement Writes The Database …
 
static OT_ProcRet atlsq3lite_Sq3StmtC_Status (Sq3StmtC_ARGS)
  Atl: Sq3StmtC::Status $sq3stmt op:Sq3StmtStatusE resetFlg:bool C-API
Prepared Statement Status …
 

Detailed Description

Sq3StmtC - get type-information

Function Documentation

◆ atlsq3lite_Sq3StmtC_Busy()

static OT_ProcRet atlsq3lite_Sq3StmtC_Busy ( Sq3StmtC_ARGS )
static

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

Definition at line 666 of file Sq3StmtC_atl.c.

666 {
670 MkErrorC_Check(hdl,Sq3StmtBusy (hdl));
672 goto end;
673 error:
675 end:
677}
#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 …

◆ atlsq3lite_Sq3StmtC_DataCount()

static OT_ProcRet atlsq3lite_Sq3StmtC_DataCount ( Sq3StmtC_ARGS )
static

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

Definition at line 680 of file Sq3StmtC_atl.c.

680 {
686 goto end;
687 error:
689 end:
691}
#define DataCount_doc
static enum MkErrorE Sq3StmtDataCount(SQ3_STMT pStmt)
Number of columns in a result set …

◆ atlsq3lite_Sq3StmtC_DbHandle()

static OT_ProcRet atlsq3lite_Sq3StmtC_DbHandle ( Sq3StmtC_ARGS )
static

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

Definition at line 650 of file Sq3StmtC_atl.c.

650 {
654 SQ3_LITE retVal = Sq3StmtDbHandle (hdl);
655 OT_retObj_SET_LITE(retVal);
656 goto end;
657 error:
659 end:
661}
#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 …

◆ atlsq3lite_Sq3StmtC_IsExplain()

static OT_ProcRet atlsq3lite_Sq3StmtC_IsExplain ( Sq3StmtC_ARGS )
static

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

Definition at line 694 of file Sq3StmtC_atl.c.

694 {
700 goto end;
701 error:
703 end:
705}
#define IsExplain_doc
static enum MkErrorE Sq3StmtIsExplain(SQ3_STMT pStmt)
Query The EXPLAIN Setting For A Prepared Statement …

◆ atlsq3lite_Sq3StmtC_Log()

MK_DEPRECATED static MK_UNUSED OT_ProcRet atlsq3lite_Sq3StmtC_Log ( Sq3StmtC_ARGS )
static

Definition at line 709 of file Sq3StmtC_atl.c.

#define OT_ERROR_LNG_RETURN

◆ atlsq3lite_Sq3StmtC_Readonly()

static OT_ProcRet atlsq3lite_Sq3StmtC_Readonly ( Sq3StmtC_ARGS )
static

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

Definition at line 712 of file Sq3StmtC_atl.c.

712 {
718 goto end;
719 error:
721 end:
723}
#define Readonly_doc
static enum MkErrorE Sq3StmtReadonly(SQ3_STMT pStmt)
Determine If An SQL Statement Writes The Database …

◆ atlsq3lite_Sq3StmtC_Status()

static OT_ProcRet atlsq3lite_Sq3StmtC_Status ( Sq3StmtC_ARGS )
static

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

Definition at line 726 of file Sq3StmtC_atl.c.

726 {
729 enum Sq3StmtStatusE op = 0;
731 MK_BOOL resetFlg = 0;
734 MkErrorC_Check(hdl,Sq3StmtStatus (hdl, op, resetFlg));
736 goto end;
737 error:
739 end:
741}
#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 …