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
Sq3FileC_TCL_API

Sq3FileC - the class known as sq3file or File defined by Sq3FileSMore...

+ Collaboration diagram for Sq3FileC_TCL_API:

Topics

 Sq3FileC_Class_TCL_API
 Sq3FileC - define the class …
 
 Sq3FileC_TOR_TCL_API
 Sq3FileC - various functions to create, initialize and destroy …
 

Detailed Description

Sq3FileC - the class known as sq3file or File defined by Sq3FileS

Struct to represent the data of the Sq3FileC

OS Interface Open File Handle …

An Sq3FileC object represents an open file in the OS interface layer. Individual OS interface implementations will want to subclass this object by appending additional fields for their own use. The pMethods entry is a pointer to an sqlite3_io_methods object that defines methods for performing I/O operations on the open file.

Reference code from sqlite3:

typedef struct sqlite3_file sqlite3_file;
struct sqlite3_file {
const struct sqlite3_io_methods *pMethods; // Methods for an open file
};
const struct sqlite3_io_methods * pMethods