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
Sq3BlobC_TOR_TCL_API

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

+ Collaboration diagram for Sq3BlobC_TOR_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3BlobC_CTOR (CONSTR_ARGS)
  Tcl: (constructor,static) Sq3BlobC [Sq3BlobC CTOR sq3lite:Sq3LiteC zDb:string zTable:string zColumn:string iRow:int64 flags:int32] C-API
Open A BLOB For Incremental I/O …
 
static OT_ProcRet tclsq3lite_Sq3BlobC_Open (OtClass_ARGS)
  Tcl: (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 …
 

Detailed Description

Sq3BlobC - various functions to create, initialize and destroy …

Function Documentation

◆ tclsq3lite_Sq3BlobC_CTOR()

static OT_ProcRet tclsq3lite_Sq3BlobC_CTOR ( CONSTR_ARGS )
static

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

Definition at line 349 of file Sq3BlobC_tcl.c.

349 {
352 SQ3_LITE sq3lite = 0;
354 MK_STRN zDb = 0;
356 MK_STRN zTable = 0;
358 MK_STRN zColumn = 0;
360 MK_I64 iRow = 0;
362 MK_I32 flags = 0;
364 SQ3_BLOB ppBlob;
365 MkErrorC_Check(sq3lite,Sq3BlobOpen (sq3lite, zDb, zTable, zColumn, iRow, flags, &ppBlob));
366 OT_CONSTRUCTOR_POST(ppBlob)
367 OT_retObj_CONSTR(ppBlob);
368 goto end;
369 error:
371 end:
373}
#define OT_CHECK_NI4(val)
#define OT_CHECK_NI8(val)
#define OT_retObj_SET_Error
#define OT_CONSTRUCTOR_POST(x)
#define OT_CHECK_REQUIRED(val)
#define OT_SETUP_CONSTRUCTOR_ARGS(...)
#define OT_retObj_RETURN
#define OT_retObj_CONSTR(x)
#define MkErrorC_Check(mng, PROC)
#define OT_CHECK_STRN(val)
#define OT_SETUP_hdl_constr
#define CTOR_doc
#define MK_NULL_NO
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 …

◆ tclsq3lite_Sq3BlobC_Open()

static OT_ProcRet tclsq3lite_Sq3BlobC_Open ( OtClass_ARGS )
static

Tcl: (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 376 of file Sq3BlobC_tcl.c.

376 {
379 SQ3_LITE sq3lite = 0;
381 MK_STRN zDb = 0;
383 MK_STRN zTable = 0;
385 MK_STRN zColumn = 0;
387 MK_I64 iRow = 0;
389 MK_I32 flags = 0;
392 SQ3_BLOB ppBlob;
393 MkErrorC_Check(sq3lite,Sq3BlobOpen (sq3lite, zDb, zTable, zColumn, iRow, flags, &ppBlob));
394 OT_CONSTRUCTOR_POST(ppBlob)
395 OT_retObj_SET_BLOB(ppBlob);
396 goto end;
397 error:
399 end:
401}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_NOARGS
#define OT_retObj_SET_BLOB(nat)
#define OT_SETUP_hdl_static_constr
#define Open_doc