theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3BlobC_TOR_RB_API

Sq3BlobC - various functions to create, initialize and destroy … More...

+ Collaboration diagram for Sq3BlobC_TOR_RB_API:

Functions

static OT_ProcRet rbsq3lite_Sq3BlobC_Open (OtClass_ARGS)
  Ruby: (constructor,static) Sq3BlobC Sq3BlobC.Open(sq3lite:Sq3LiteC, zDb:string, zTable:string, zColumn:string, iRow:int64, flags:int32) C-API
Open A BLOB For Incremental I/O …
 
static OT_ProcRet rbsq3lite_Sq3BlobC_new (CONSTR_ARGS)
  Ruby: (constructor,static) Sq3BlobC Sq3BlobC.new(sq3lite:Sq3LiteC, zDb:string, zTable:string, zColumn:string, iRow:int64, flags:int32) C-API
Open A BLOB For Incremental I/O …
 

Detailed Description

Sq3BlobC - various functions to create, initialize and destroy …

Function Documentation

◆ rbsq3lite_Sq3BlobC_new()

static OT_ProcRet rbsq3lite_Sq3BlobC_new ( CONSTR_ARGS )
static

Ruby: (constructor,static) Sq3BlobC Sq3BlobC.new(sq3lite:Sq3LiteC, zDb:string, zTable:string, zColumn:string, iRow:int64, flags:int32) C-API
Open A BLOB For Incremental I/O …

Definition at line 326 of file Sq3BlobC_rb.c.

326 {
329 SQ3_LITE sq3lite = 0;
331 MK_STRN zDb = 0;
333 MK_STRN zTable = 0;
335 MK_STRN zColumn = 0;
337 MK_I64 iRow = 0;
339 MK_I32 flags = 0;
341 SQ3_BLOB ppBlob;
342 MkErrorC_Check(sq3lite,Sq3BlobOpen (sq3lite, zDb, zTable, zColumn, iRow, flags, &ppBlob));
343 OT_CONSTRUCTOR_POST(ppBlob)
344 OT_retObj_CONSTR(ppBlob);
345 end: MK_UNUSED /* LONG JUMP on error */
347}
#define OT_CHECK_NI4(val)
#define OT_CHECK_NI8(val)
#define OT_CONSTRUCTOR_POST(x)
#define OT_retObj_CONSTR(mng)
#define OT_CHECK_REQUIRED(val)
#define OT_SETUP_CONSTRUCTOR_ARGS(min, max, d)
#define OT_retObj_RETURN
#define MkErrorC_Check(mng, PROC)
#define OT_CHECK_STRN(val)
#define OT_SETUP_hdl_constr
Definition Sq3BlobC_rb.c:89
#define new_doc
#define MK_NULL_NO
#define MK_UNUSED
const MK_STRB * MK_STRN
signed long long MK_I64
signed int MK_I32
static enum MkErrorE Sq3BlobOpen(SQ3_LITE sq3lite, MK_STRN zDb, MK_STRN zTable, MK_STRN zColumn, MK_I64 iRow, MK_I32 flags, SQ3_BLOB *ppBlob)
Open A BLOB For Incremental I/O …
#define OT_CHECK_LITE(val, nullB)
Struct to represent the data of the Sq3BlobC …
Struct to represent the data of the Sq3LiteC …

◆ rbsq3lite_Sq3BlobC_Open()

static OT_ProcRet rbsq3lite_Sq3BlobC_Open ( OtClass_ARGS )
static

Ruby: (constructor,static) Sq3BlobC Sq3BlobC.Open(sq3lite:Sq3LiteC, zDb:string, zTable:string, zColumn:string, iRow:int64, flags:int32) C-API
Open A BLOB For Incremental I/O …

Definition at line 301 of file Sq3BlobC_rb.c.

301 {
304 SQ3_LITE sq3lite = 0;
306 MK_STRN zDb = 0;
308 MK_STRN zTable = 0;
310 MK_STRN zColumn = 0;
312 MK_I64 iRow = 0;
314 MK_I32 flags = 0;
317 SQ3_BLOB ppBlob;
318 MkErrorC_Check(sq3lite,Sq3BlobOpen (sq3lite, zDb, zTable, zColumn, iRow, flags, &ppBlob));
319 OT_CONSTRUCTOR_POST(ppBlob)
320 OT_retObj_SET_BLOB(ppBlob);
321 end: MK_UNUSED /* LONG JUMP on error */
323}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_NOARGS
#define OT_retObj_SET_BLOB(nat)
#define OT_SETUP_hdl_static_constr
Definition Sq3BlobC_rb.c:95
#define Open_doc