theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
Sq3Lite_Info_RB_API

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

+ Collaboration diagram for Sq3Lite_Info_RB_API:

Functions

static OT_ProcRet rbsq3lite_Sq3Lite_KeywordNameBUF (OtClass_ARGS)
  Ruby: (static) MkBufferC Sq3Lite.KeywordNameBUF(num:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet rbsq3lite_Sq3Lite_Complete (OtClass_ARGS)
  Ruby: (static) Sq3Lite.Complete(sql:string) C-API
Determine If An SQL Statement Is Complete …
 
static OT_ProcRet rbsq3lite_Sq3Lite_KeywordCheck (OtClass_ARGS)
  Ruby: (static) Sq3Lite.KeywordCheck(arg0:string, arg1:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet rbsq3lite_Sq3Lite_KeywordCount (OtClass_ARGS)
  Ruby: (static) Sq3Lite.KeywordCount() C-API
SQL Keyword Checking …
 
static OT_ProcRet rbsq3lite_Sq3Lite_KeywordName (OtClass_ARGS)
  Ruby: (static) {kwd:string kwdsz:int32} Sq3Lite.KeywordName(num:int32) C-API
SQL Keyword Checking …
 
static OT_ProcRet rbsq3lite_Sq3Lite_Status (OtClass_ARGS)
  Ruby: (static) {pCurrent:int32 pHighwater:int32} Sq3Lite.Status(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …
 
static OT_ProcRet rbsq3lite_Sq3Lite_Status64 (OtClass_ARGS)
  Ruby: (static) {pCurrent:int64 pHighwater:int64} Sq3Lite.Status64(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …
 

Detailed Description

Sq3Lite PACKAGE - get information about the application …

Function Documentation

◆ rbsq3lite_Sq3Lite_Complete()

static OT_ProcRet rbsq3lite_Sq3Lite_Complete ( OtClass_ARGS )
static

Ruby: (static) Sq3Lite.Complete(sql:string) C-API
Determine If An SQL Statement Is Complete …

Definition at line 1795 of file LibSq3Lite_rb.c.

1795 {
1798 MK_STRN sql = 0;
1801 MkErrorC_Check(hdl,Sq3Complete (sql));
1803 end: MK_UNUSED /* LONG JUMP on error */
1805}
#define OT_SETUP_ONEARG(d)
#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
#define MK_UNUSED
const MK_STRB * MK_STRN
static enum MkErrorE Sq3Complete(MK_STRN sql)
Determine If An SQL Statement Is Complete …

◆ rbsq3lite_Sq3Lite_KeywordCheck()

static OT_ProcRet rbsq3lite_Sq3Lite_KeywordCheck ( OtClass_ARGS )
static

Ruby: (static) Sq3Lite.KeywordCheck(arg0:string, arg1:int32) C-API
SQL Keyword Checking …

Definition at line 1808 of file LibSq3Lite_rb.c.

1808 {
1811 MK_STRN arg0 = 0;
1813 MK_I32 arg1 = 0;
1816 MkErrorC_Check(hdl,Sq3KeywordCheck (arg0, arg1));
1818 end: MK_UNUSED /* LONG JUMP on error */
1820}
#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 …

◆ rbsq3lite_Sq3Lite_KeywordCount()

static OT_ProcRet rbsq3lite_Sq3Lite_KeywordCount ( OtClass_ARGS )
static

Ruby: (static) Sq3Lite.KeywordCount() C-API
SQL Keyword Checking …

Definition at line 1823 of file LibSq3Lite_rb.c.

1823 {
1829 end: MK_UNUSED /* LONG JUMP on error */
1831}
#define OT_SETUP_NOARG(d)
#define KeywordCount_doc
static enum MkErrorE Sq3KeywordCount(void)
SQL Keyword Checking …

◆ rbsq3lite_Sq3Lite_KeywordName()

static OT_ProcRet rbsq3lite_Sq3Lite_KeywordName ( OtClass_ARGS )
static

Ruby: (static) {kwd:string kwdsz:int32} Sq3Lite.KeywordName(num:int32) C-API
SQL Keyword Checking …

Definition at line 1836 of file LibSq3Lite_rb.c.

1836 {
1839 MK_I32 num = 0;
1842 MK_STRN kwd;
1843 MK_I32 kwdsz;
1844 MkErrorC_Check(MK_ERROR_FORMAT,Sq3KeywordName (num, &kwd, &kwdsz));
1848 end: MK_UNUSED /* LONG JUMP on error */
1850}
#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 …

◆ rbsq3lite_Sq3Lite_KeywordNameBUF()

static OT_ProcRet rbsq3lite_Sq3Lite_KeywordNameBUF ( OtClass_ARGS )
static

Ruby: (static) MkBufferC Sq3Lite.KeywordNameBUF(num:int32) C-API
SQL Keyword Checking …

Definition at line 1779 of file LibSq3Lite_rb.c.

1779 {
1782 MK_I32 num = 0;
1785 MK_BUF kwd_out;
1787 OT_retObj_SET_BUF(kwd_out);
1788 end: MK_UNUSED /* LONG JUMP on error */
1790}
#define OT_retObj_SET_BUF(nat)
#define KeywordNameBUF_doc
#define Sq3KeywordNameBUF(...)

◆ rbsq3lite_Sq3Lite_Status()

static OT_ProcRet rbsq3lite_Sq3Lite_Status ( OtClass_ARGS )
static

Ruby: (static) {pCurrent:int32 pHighwater:int32} Sq3Lite.Status(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …

Definition at line 1853 of file LibSq3Lite_rb.c.

1853 {
1856 enum Sq3StatusE op = 0;
1858 MK_BOOL resetFlag = 0;
1859 OT_CHECK_REQUIRED(OT_CHECK_bool (resetFlag))
1861 MK_I32 pCurrent;
1862 MK_I32 pHighwater;
1863 MkErrorC_Check(MK_ERROR_FORMAT,Sq3Status (op, &pCurrent, &pHighwater, resetFlag));
1866 OT_retObj_APPEND(OT_TMP_I32_OBJ(pHighwater));
1867 end: MK_UNUSED /* LONG JUMP on error */
1869}
#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)

◆ rbsq3lite_Sq3Lite_Status64()

static OT_ProcRet rbsq3lite_Sq3Lite_Status64 ( OtClass_ARGS )
static

Ruby: (static) {pCurrent:int64 pHighwater:int64} Sq3Lite.Status64(op:Sq3StatusE, resetFlag:bool) C-API
SQLite Runtime Status …

Definition at line 1872 of file LibSq3Lite_rb.c.

1872 {
1875 enum Sq3StatusE op = 0;
1877 MK_BOOL resetFlag = 0;
1878 OT_CHECK_REQUIRED(OT_CHECK_bool (resetFlag))
1880 MK_I64 pCurrent;
1881 MK_I64 pHighwater;
1882 MkErrorC_Check(MK_ERROR_FORMAT,Sq3Status64 (op, &pCurrent, &pHighwater, resetFlag));
1885 OT_retObj_APPEND(OT_TMP_I64_OBJ(pHighwater));
1886 end: MK_UNUSED /* LONG JUMP on error */
1888}
#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 …