theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Config_RB_API

Sq3LiteC - configure the classMore...

+ Collaboration diagram for Sq3LiteC_Config_RB_API:

Functions

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

Detailed Description

Sq3LiteC - configure the class

Function Documentation

◆ rbsq3lite_Sq3LiteC_BusyTimeout()

static OT_ProcRet rbsq3lite_Sq3LiteC_BusyTimeout ( Sq3LiteC_ARGS )
static

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

Definition at line 278 of file Sq3LiteC_rb.c.

278 {
281 MK_I32 ms = 0;
284 MkErrorC_Check(hdl,Sq3LiteBusyTimeout (hdl, ms));
286 end: MK_UNUSED /* LONG JUMP on error */
288}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_NI4(val)
#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_rb.c:87
#define MK_UNUSED
signed int MK_I32
static enum MkErrorE Sq3LiteBusyTimeout(SQ3_LITE sq3lite, MK_I32 ms)
Set A Busy Timeout …

◆ rbsq3lite_Sq3LiteC_DeclareVtab()

static OT_ProcRet rbsq3lite_Sq3LiteC_DeclareVtab ( Sq3LiteC_ARGS )
static

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

Definition at line 291 of file Sq3LiteC_rb.c.

291 {
294 MK_STRN zSQL = 0;
297 MkErrorC_Check(hdl,Sq3LiteDeclareVtab (hdl, zSQL));
299 end: MK_UNUSED /* LONG JUMP on error */
301}
#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 …

◆ rbsq3lite_Sq3LiteC_ExtendedResultCodes()

static OT_ProcRet rbsq3lite_Sq3LiteC_ExtendedResultCodes ( Sq3LiteC_ARGS )
static

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

Definition at line 304 of file Sq3LiteC_rb.c.

304 {
307 MK_I32 onoff = 0;
312 end: MK_UNUSED /* LONG JUMP on error */
314}
#define ExtendedResultCodes_doc
static enum MkErrorE Sq3LiteExtendedResultCodes(SQ3_LITE sq3lite, MK_I32 onoff)
Enable Or Disable Extended Result Codes …

◆ rbsq3lite_Sq3LiteC_Limit()

static OT_ProcRet rbsq3lite_Sq3LiteC_Limit ( Sq3LiteC_ARGS )
static

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

Definition at line 317 of file Sq3LiteC_rb.c.

317 {
320 enum Sq3LimitE id = 0;
322 MK_I32 newVal = 0;
325 MkErrorC_Check(hdl,Sq3LiteLimit (hdl, id, newVal));
327 end: MK_UNUSED /* LONG JUMP on error */
329}
#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)