theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3Lite_Info_PY_API

Sq3Lite PACKAGE - get information about the application … More...

+ Collaboration diagram for Sq3Lite_Info_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3Lite_KeywordNameBUF (OtClass_ARGS)
  Python: [static] MkBufferC KeywordNameBUF(num:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet pysq3lite_Sq3Lite_Complete (OtClass_ARGS)
  Python: [static] Complete(sql:string) C-API
Determine If An SQL Statement Is Complete …
 
static OT_ProcRet pysq3lite_Sq3Lite_KeywordCheck (OtClass_ARGS)
  Python: [static] KeywordCheck(arg0:string, arg1:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet pysq3lite_Sq3Lite_KeywordCount (OtClass_ARGS)
  Python: [static] KeywordCount() C-API
SQL Keyword Checking …
 
static OT_ProcRet pysq3lite_Sq3Lite_KeywordName (OtClass_ARGS)
  Python: [static] {kwd:string kwdsz:int32} KeywordName(num:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet pysq3lite_Sq3Lite_Status (OtClass_ARGS)
  Python: [static] {pCurrent:int32 pHighwater:int32} Status(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …
 
static OT_ProcRet pysq3lite_Sq3Lite_Status64 (OtClass_ARGS)
  Python: [static] {pCurrent:int64 pHighwater:int64} Status64(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …
 

Detailed Description

Sq3Lite PACKAGE - get information about the application …

Function Documentation

◆ pysq3lite_Sq3Lite_Complete()

static OT_ProcRet pysq3lite_Sq3Lite_Complete ( OtClass_ARGS )
static

Python: [static] Complete(sql:string) C-API
Determine If An SQL Statement Is Complete …

Definition at line 2100 of file LibSq3Lite_py.c.

2100 {
2103 MK_STRN sql = 0;
2106 MkErrorC_Check(hdl,Sq3Complete (sql));
2108 goto end;
2109 error:
2111 end:
2113}
#define OT_SETUP_ONEARG(d)
#define OT_retObj_SET_Error
#define OT_CHECK_REQUIRED(val)
#define OT_retObj_SET_None
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define MkErrorC_Check(mng, PROC)
#define OT_CHECK_STRN(val)
#define Complete_doc
#define OT_SETUP_hdl_static
const MK_STRB * MK_STRN
static enum MkErrorE Sq3Complete(MK_STRN sql)
Determine If An SQL Statement Is Complete …

◆ pysq3lite_Sq3Lite_KeywordCheck()

static OT_ProcRet pysq3lite_Sq3Lite_KeywordCheck ( OtClass_ARGS )
static

Python: [static] KeywordCheck(arg0:string, arg1:int32) C-API
SQL Keyword Checking …

Definition at line 2116 of file LibSq3Lite_py.c.

2116 {
2119 MK_STRN arg0 = 0;
2121 MK_I32 arg1 = 0;
2124 MkErrorC_Check(hdl,Sq3KeywordCheck (arg0, arg1));
2126 goto end;
2127 error:
2129 end:
2131}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_NI4(val)
#define KeywordCheck_doc
signed int MK_I32
static enum MkErrorE Sq3KeywordCheck(MK_STRN arg0, MK_I32 arg1)
SQL Keyword Checking …

◆ pysq3lite_Sq3Lite_KeywordCount()

static OT_ProcRet pysq3lite_Sq3Lite_KeywordCount ( OtClass_ARGS )
static

Python: [static] KeywordCount() C-API
SQL Keyword Checking …

Definition at line 2134 of file LibSq3Lite_py.c.

2134 {
2140 goto end;
2141 error:
2143 end:
2145}
#define OT_SETUP_NOARG(d)
#define KeywordCount_doc
static enum MkErrorE Sq3KeywordCount(void)
SQL Keyword Checking …

◆ pysq3lite_Sq3Lite_KeywordName()

static OT_ProcRet pysq3lite_Sq3Lite_KeywordName ( OtClass_ARGS )
static

Python: [static] {kwd:string kwdsz:int32} KeywordName(num:int32) C-API
SQL Keyword Checking …

Definition at line 2150 of file LibSq3Lite_py.c.

2150 {
2153 MK_I32 num = 0;
2156 MK_STRN kwd;
2157 MK_I32 kwdsz;
2158 MkErrorC_Check(MK_ERROR_FORMAT,Sq3KeywordName (num, &kwd, &kwdsz));
2162 goto end;
2163 error:
2165 end:
2167}
#define OT_retObj_SET_List
#define OT_TMP_I32_OBJ(val)
#define OT_retObj_APPEND(var)
#define OT_TMP_STR_OBJ(val)
#define KeywordName_doc
#define MK_ERROR_FORMAT
static enum MkErrorE Sq3KeywordName(MK_I32 num, MK_STRN *kwd, MK_I32 *kwdsz)
SQL Keyword Checking …

◆ pysq3lite_Sq3Lite_KeywordNameBUF()

static OT_ProcRet pysq3lite_Sq3Lite_KeywordNameBUF ( OtClass_ARGS )
static

Python: [static] MkBufferC KeywordNameBUF(num:int32) C-API
SQL Keyword Checking …

Definition at line 2081 of file LibSq3Lite_py.c.

2081 {
2084 MK_I32 num = 0;
2087 MK_BUF kwd_out;
2089 OT_retObj_SET_BUF(kwd_out);
2090 goto end;
2091 error:
2093 end:
2095}
#define OT_retObj_SET_BUF(nat)
#define KeywordNameBUF_doc
#define Sq3KeywordNameBUF(...)

◆ pysq3lite_Sq3Lite_Status()

static OT_ProcRet pysq3lite_Sq3Lite_Status ( OtClass_ARGS )
static

Python: [static] {pCurrent:int32 pHighwater:int32} Status(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …

Definition at line 2170 of file LibSq3Lite_py.c.

2170 {
2173 enum Sq3StatusE op = 0;
2175 MK_BOOL resetFlag = 0;
2176 OT_CHECK_REQUIRED(OT_CHECK_bool (resetFlag))
2178 MK_I32 pCurrent;
2179 MK_I32 pHighwater;
2180 MkErrorC_Check(MK_ERROR_FORMAT,Sq3Status (op, &pCurrent, &pHighwater, resetFlag));
2183 OT_retObj_APPEND(OT_TMP_I32_OBJ(pHighwater));
2184 goto end;
2185 error:
2187 end:
2189}
#define OT_CHECK_bool(val)
#define Status_doc
bool MK_BOOL
Sq3StatusE
Status Parameters.
static enum MkErrorE Sq3Status(enum Sq3StatusE op, MK_I32 *pCurrent, MK_I32 *pHighwater, MK_BOOL resetFlag)
SQLite Runtime Status …
#define OT_CHECK_ENUM(ename, val)

◆ pysq3lite_Sq3Lite_Status64()

static OT_ProcRet pysq3lite_Sq3Lite_Status64 ( OtClass_ARGS )
static

Python: [static] {pCurrent:int64 pHighwater:int64} Status64(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …

Definition at line 2192 of file LibSq3Lite_py.c.

2192 {
2195 enum Sq3StatusE op = 0;
2197 MK_BOOL resetFlag = 0;
2198 OT_CHECK_REQUIRED(OT_CHECK_bool (resetFlag))
2200 MK_I64 pCurrent;
2201 MK_I64 pHighwater;
2202 MkErrorC_Check(MK_ERROR_FORMAT,Sq3Status64 (op, &pCurrent, &pHighwater, resetFlag));
2205 OT_retObj_APPEND(OT_TMP_I64_OBJ(pHighwater));
2206 goto end;
2207 error:
2209 end:
2211}
#define OT_TMP_I64_OBJ(val)
#define Status64_doc
signed long long MK_I64
static enum MkErrorE Sq3Status64(enum Sq3StatusE op, MK_I64 *pCurrent, MK_I64 *pHighwater, MK_BOOL resetFlag)
SQLite Runtime Status …