theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3Lite_Info_CC_API

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

+ Collaboration diagram for Sq3Lite_Info_CC_API:

Functions

static MkBufferCccsq3lite::Sq3Lite::KeywordNameBUF (MK_I32 num)
  C++: [static] MkBufferC* Sq3Lite::KeywordNameBUF(MK_I32 num) C-API
SQL Keyword Checking …
 
static void ccsq3lite::Sq3Lite::Complete (MK_STRN sql)
  C++: [static] Sq3Lite::Complete(MK_STRN sql) C-API
Determine If An SQL Statement Is Complete …
 
static void ccsq3lite::Sq3Lite::Complete (const std::string &sql)
  C++: [static] Sq3Lite::Complete(MK_STRN sql) C-API
Determine If An SQL Statement Is Complete …
 
static void ccsq3lite::Sq3Lite::KeywordCheck (MK_STRN arg0, MK_I32 arg1)
  C++: [static] Sq3Lite::KeywordCheck(MK_STRN arg0, MK_I32 arg1) C-API
SQL Keyword Checking …
 
static void ccsq3lite::Sq3Lite::KeywordCheck (const std::string &arg0, MK_I32 arg1)
  C++: [static] Sq3Lite::KeywordCheck(MK_STRN arg0, MK_I32 arg1) C-API
SQL Keyword Checking …
 
static void ccsq3lite::Sq3Lite::KeywordCount ()
  C++: [static] Sq3Lite::KeywordCount() C-API
SQL Keyword Checking …
 
static std::tuple< MK_STRN, MK_I32ccsq3lite::Sq3Lite::KeywordName (MK_I32 num)
  C++: [static] {kwd:MK_STRN kwdsz:MK_I32} Sq3Lite::KeywordName(MK_I32 num) C-API
SQL Keyword Checking …
 
static std::tuple< MK_I32, MK_I32ccsq3lite::Sq3Lite::Status (Sq3StatusE op, MK_BOOL resetFlag)
  C++: [static] {pCurrent:MK_I32 pHighwater:MK_I32} Sq3Lite::Status(Sq3StatusE op, MK_BOOL resetFlag) C-API
SQLite Runtime Status …
 
static std::tuple< MK_I64, MK_I64ccsq3lite::Sq3Lite::Status64 (Sq3StatusE op, MK_BOOL resetFlag)
  C++: [static] {pCurrent:MK_I64 pHighwater:MK_I64} Sq3Lite::Status64(Sq3StatusE op, MK_BOOL resetFlag) C-API
SQLite Runtime Status …
 

Detailed Description

Sq3Lite PACKAGE - get information about the application …

Function Documentation

◆ Complete() [1/2]

void ccsq3lite::Sq3Lite::Complete ( const std::string & sql)
inlinestatic

C++: [static] Sq3Lite::Complete(MK_STRN sql) C-API
Determine If An SQL Statement Is Complete …

Definition at line 929 of file LibSq3Lite_inline_cc.hh.

929 {
931 const MK_STRN sql_hdl = sql.c_str();
932 enum MkErrorE errVal = Sq3Complete(sql_hdl);
933 MkErrorC_Check(NULL, errVal);
934 }
const MK_STRB * MK_STRN
#define MkRtSetup_NULL
static enum MkErrorE Sq3Complete(MK_STRN sql)
Determine If An SQL Statement Is Complete …

◆ Complete() [2/2]

void ccsq3lite::Sq3Lite::Complete ( MK_STRN sql)
inlinestatic

C++: [static] Sq3Lite::Complete(MK_STRN sql) C-API
Determine If An SQL Statement Is Complete …

Definition at line 922 of file LibSq3Lite_inline_cc.hh.

922 {
924 enum MkErrorE errVal = Sq3Complete(sql);
925 MkErrorC_Check(NULL, errVal);
926 }

◆ KeywordCheck() [1/2]

void ccsq3lite::Sq3Lite::KeywordCheck ( const std::string & arg0,
MK_I32 arg1 )
inlinestatic

C++: [static] Sq3Lite::KeywordCheck(MK_STRN arg0, MK_I32 arg1) C-API
SQL Keyword Checking …

Definition at line 944 of file LibSq3Lite_inline_cc.hh.

944 {
946 const MK_STRN arg0_hdl = arg0.c_str();
947 enum MkErrorE errVal = Sq3KeywordCheck(arg0_hdl, arg1);
948 MkErrorC_Check(NULL, errVal);
949 }
static enum MkErrorE Sq3KeywordCheck(MK_STRN arg0, MK_I32 arg1)
SQL Keyword Checking …

◆ KeywordCheck() [2/2]

void ccsq3lite::Sq3Lite::KeywordCheck ( MK_STRN arg0,
MK_I32 arg1 )
inlinestatic

C++: [static] Sq3Lite::KeywordCheck(MK_STRN arg0, MK_I32 arg1) C-API
SQL Keyword Checking …

Definition at line 937 of file LibSq3Lite_inline_cc.hh.

937 {
939 enum MkErrorE errVal = Sq3KeywordCheck(arg0, arg1);
940 MkErrorC_Check(NULL, errVal);
941 }

◆ KeywordCount()

void ccsq3lite::Sq3Lite::KeywordCount ( )
inlinestatic

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

Definition at line 952 of file LibSq3Lite_inline_cc.hh.

952 {
954 enum MkErrorE errVal = Sq3KeywordCount();
955 MkErrorC_Check(NULL, errVal);
956 }
static enum MkErrorE Sq3KeywordCount(void)
SQL Keyword Checking …

◆ KeywordName()

std::tuple< MK_STRN, MK_I32 > ccsq3lite::Sq3Lite::KeywordName ( MK_I32 num)
inlinestatic

C++: [static] {kwd:MK_STRN kwdsz:MK_I32} Sq3Lite::KeywordName(MK_I32 num) C-API
SQL Keyword Checking …

Definition at line 961 of file LibSq3Lite_inline_cc.hh.

961 {
963 MK_STRN kwd;
964 MK_I32 kwdsz;
965 enum MkErrorE errVal = Sq3KeywordName(num, &kwd, &kwdsz);
966 MkErrorC_Check(NULL, errVal);
967 std::tuple<MK_STRN,MK_I32> __retVal__L = {kwd,kwdsz};
968 return __retVal__L;
969 }
signed int MK_I32
static enum MkErrorE Sq3KeywordName(MK_I32 num, MK_STRN *kwd, MK_I32 *kwdsz)
SQL Keyword Checking …

◆ KeywordNameBUF()

MkBufferC * ccsq3lite::Sq3Lite::KeywordNameBUF ( MK_I32 num)
inlinestatic

C++: [static] MkBufferC* Sq3Lite::KeywordNameBUF(MK_I32 num) C-API
SQL Keyword Checking …

Definition at line 911 of file LibSq3Lite_inline_cc.hh.

911 {
913 MK_BUF kwd_out;
914 enum MkErrorE errVal = Sq3KeywordNameBUF(num, &kwd_out);
915 MkErrorC_Check(NULL, errVal);
917 }
static MkBufferC * MkBufferC_ObjNew(MK_RT_ARGS MK_BUF hdl)
struct MkBufferS * MK_BUF
#define MK_RT_CALL
#define Sq3KeywordNameBUF(...)

◆ Status()

std::tuple< MK_I32, MK_I32 > ccsq3lite::Sq3Lite::Status ( Sq3StatusE op,
MK_BOOL resetFlag )
inlinestatic

C++: [static] {pCurrent:MK_I32 pHighwater:MK_I32} Sq3Lite::Status(Sq3StatusE op, MK_BOOL resetFlag) C-API
SQLite Runtime Status …

Definition at line 972 of file LibSq3Lite_inline_cc.hh.

972 {
974 MK_I32 pCurrent;
975 MK_I32 pHighwater;
976 enum MkErrorE errVal = Sq3Status(op, &pCurrent, &pHighwater, resetFlag);
977 MkErrorC_Check(NULL, errVal);
978 std::tuple<MK_I32,MK_I32> __retVal__L = {pCurrent,pHighwater};
979 return __retVal__L;
980 }
static enum MkErrorE Sq3Status(enum Sq3StatusE op, MK_I32 *pCurrent, MK_I32 *pHighwater, MK_BOOL resetFlag)
SQLite Runtime Status …

◆ Status64()

std::tuple< MK_I64, MK_I64 > ccsq3lite::Sq3Lite::Status64 ( Sq3StatusE op,
MK_BOOL resetFlag )
inlinestatic

C++: [static] {pCurrent:MK_I64 pHighwater:MK_I64} Sq3Lite::Status64(Sq3StatusE op, MK_BOOL resetFlag) C-API
SQLite Runtime Status …

Definition at line 983 of file LibSq3Lite_inline_cc.hh.

983 {
985 MK_I64 pCurrent;
986 MK_I64 pHighwater;
987 enum MkErrorE errVal = Sq3Status64(op, &pCurrent, &pHighwater, resetFlag);
988 MkErrorC_Check(NULL, errVal);
989 std::tuple<MK_I64,MK_I64> __retVal__L = {pCurrent,pHighwater};
990 return __retVal__L;
991 }
signed long long MK_I64
static enum MkErrorE Sq3Status64(enum Sq3StatusE op, MK_I64 *pCurrent, MK_I64 *pHighwater, MK_BOOL resetFlag)
SQLite Runtime Status …