theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Config_TCL_API

Sq3LiteC - configure the classMore...

+ Collaboration diagram for Sq3LiteC_Config_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3LiteC_BusyTimeout (Sq3LiteC_ARGS)
  Tcl: $sq3lite BusyTimeout ms:int32 C-API
Set A Busy Timeout …
 
static OT_ProcRet tclsq3lite_Sq3LiteC_DeclareVtab (Sq3LiteC_ARGS)
  Tcl: $sq3lite DeclareVtab zSQL:string C-API
Declare The Schema Of A Virtual Table …
 
static OT_ProcRet tclsq3lite_Sq3LiteC_ExtendedResultCodes (Sq3LiteC_ARGS)
  Tcl: $sq3lite ExtendedResultCodes onoff:int32 C-API
Enable Or Disable Extended Result Codes …
 
static OT_ProcRet tclsq3lite_Sq3LiteC_Limit (Sq3LiteC_ARGS)
  Tcl: $sq3lite Limit id:Sq3LimitE newVal:int32 C-API
Run-time Limits …
 

Detailed Description

Sq3LiteC - configure the class

Function Documentation

◆ tclsq3lite_Sq3LiteC_BusyTimeout()

static OT_ProcRet tclsq3lite_Sq3LiteC_BusyTimeout ( Sq3LiteC_ARGS )
static

Tcl: $sq3lite BusyTimeout ms:int32 C-API
Set A Busy Timeout …

Definition at line 301 of file Sq3LiteC_tcl.c.

301 {
304 MK_I32 ms = 0;
307 MkErrorC_Check(hdl,Sq3LiteBusyTimeout (hdl, ms));
309 goto end;
310 error:
312 end:
314}
#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
signed int MK_I32
static enum MkErrorE Sq3LiteBusyTimeout(SQ3_LITE sq3lite, MK_I32 ms)
Set A Busy Timeout …

◆ tclsq3lite_Sq3LiteC_DeclareVtab()

static OT_ProcRet tclsq3lite_Sq3LiteC_DeclareVtab ( Sq3LiteC_ARGS )
static

Tcl: $sq3lite DeclareVtab zSQL:string C-API
Declare The Schema Of A Virtual Table …

Definition at line 317 of file Sq3LiteC_tcl.c.

317 {
320 MK_STRN zSQL = 0;
323 MkErrorC_Check(hdl,Sq3LiteDeclareVtab (hdl, zSQL));
325 goto end;
326 error:
328 end:
330}
#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 …

◆ tclsq3lite_Sq3LiteC_ExtendedResultCodes()

static OT_ProcRet tclsq3lite_Sq3LiteC_ExtendedResultCodes ( Sq3LiteC_ARGS )
static

Tcl: $sq3lite ExtendedResultCodes onoff:int32 C-API
Enable Or Disable Extended Result Codes …

Definition at line 333 of file Sq3LiteC_tcl.c.

333 {
336 MK_I32 onoff = 0;
341 goto end;
342 error:
344 end:
346}
#define ExtendedResultCodes_doc
static enum MkErrorE Sq3LiteExtendedResultCodes(SQ3_LITE sq3lite, MK_I32 onoff)
Enable Or Disable Extended Result Codes …

◆ tclsq3lite_Sq3LiteC_Limit()

static OT_ProcRet tclsq3lite_Sq3LiteC_Limit ( Sq3LiteC_ARGS )
static

Tcl: $sq3lite Limit id:Sq3LimitE newVal:int32 C-API
Run-time Limits …

Definition at line 349 of file Sq3LiteC_tcl.c.

349 {
352 enum Sq3LimitE id = 0;
354 MK_I32 newVal = 0;
357 MkErrorC_Check(hdl,Sq3LiteLimit (hdl, id, newVal));
359 goto end;
360 error:
362 end:
364}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_ENUM(ename, val)
#define Limit_doc
static enum MkErrorE Sq3LiteLimit(SQ3_LITE sq3lite, enum Sq3LimitE id, MK_I32 newVal)
Run-time Limits …
Sq3LimitE
Run-Time Limit Categories.