theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Config_PY_API

Sq3LiteC - configure the classMore...

+ Collaboration diagram for Sq3LiteC_Config_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3LiteC_BusyTimeout (Sq3LiteC_ARGS)
  Python: sq3lite.BusyTimeout(ms:int32) C-API
Set A Busy Timeout …
 
static OT_ProcRet pysq3lite_Sq3LiteC_DeclareVtab (Sq3LiteC_ARGS)
  Python: sq3lite.DeclareVtab(zSQL:string) C-API
Declare The Schema Of A Virtual Table …
 
static OT_ProcRet pysq3lite_Sq3LiteC_ExtendedResultCodes (Sq3LiteC_ARGS)
  Python: sq3lite.ExtendedResultCodes(onoff:int32) C-API
Enable Or Disable Extended Result Codes …
 
static OT_ProcRet pysq3lite_Sq3LiteC_Limit (Sq3LiteC_ARGS)
  Python: sq3lite.Limit(id:Sq3LimitE, newVal:int32) C-API
Run-time Limits …
 

Detailed Description

Sq3LiteC - configure the class

Function Documentation

◆ pysq3lite_Sq3LiteC_BusyTimeout()

static OT_ProcRet pysq3lite_Sq3LiteC_BusyTimeout ( Sq3LiteC_ARGS )
static

Python: sq3lite.BusyTimeout(ms:int32) C-API
Set A Busy Timeout …

Definition at line 287 of file Sq3LiteC_py.c.

287 {
290 MK_I32 ms = 0;
293 MkErrorC_Check(hdl,Sq3LiteBusyTimeout (hdl, ms));
295 goto end;
296 error:
298 end:
300}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_NI4(val)
#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 BusyTimeout_doc
#define OT_SETUP_hdl
Definition Sq3LiteC_py.c:23
signed int MK_I32
static enum MkErrorE Sq3LiteBusyTimeout(SQ3_LITE sq3lite, MK_I32 ms)
Set A Busy Timeout …

◆ pysq3lite_Sq3LiteC_DeclareVtab()

static OT_ProcRet pysq3lite_Sq3LiteC_DeclareVtab ( Sq3LiteC_ARGS )
static

Python: sq3lite.DeclareVtab(zSQL:string) C-API
Declare The Schema Of A Virtual Table …

Definition at line 303 of file Sq3LiteC_py.c.

303 {
306 MK_STRN zSQL = 0;
309 MkErrorC_Check(hdl,Sq3LiteDeclareVtab (hdl, zSQL));
311 goto end;
312 error:
314 end:
316}
#define OT_CHECK_STRN(val)
#define DeclareVtab_doc
const MK_STRB * MK_STRN
static enum MkErrorE Sq3LiteDeclareVtab(SQ3_LITE sq3lite, MK_STRN zSQL)
Declare The Schema Of A Virtual Table …

◆ pysq3lite_Sq3LiteC_ExtendedResultCodes()

static OT_ProcRet pysq3lite_Sq3LiteC_ExtendedResultCodes ( Sq3LiteC_ARGS )
static

Python: sq3lite.ExtendedResultCodes(onoff:int32) C-API
Enable Or Disable Extended Result Codes …

Definition at line 319 of file Sq3LiteC_py.c.

319 {
322 MK_I32 onoff = 0;
327 goto end;
328 error:
330 end:
332}
#define ExtendedResultCodes_doc
static enum MkErrorE Sq3LiteExtendedResultCodes(SQ3_LITE sq3lite, MK_I32 onoff)
Enable Or Disable Extended Result Codes …

◆ pysq3lite_Sq3LiteC_Limit()

static OT_ProcRet pysq3lite_Sq3LiteC_Limit ( Sq3LiteC_ARGS )
static

Python: sq3lite.Limit(id:Sq3LimitE, newVal:int32) C-API
Run-time Limits …

Definition at line 335 of file Sq3LiteC_py.c.

335 {
338 enum Sq3LimitE id = 0;
340 MK_I32 newVal = 0;
343 MkErrorC_Check(hdl,Sq3LiteLimit (hdl, id, newVal));
345 goto end;
346 error:
348 end:
350}
#define OT_SETUP_VARARGS(min, max, d)
#define Limit_doc
static enum MkErrorE Sq3LiteLimit(SQ3_LITE sq3lite, enum Sq3LimitE id, MK_I32 newVal)
Run-time Limits …
Sq3LimitE
Run-Time Limit Categories.
#define OT_CHECK_ENUM(ename, val)