69const char *
Bool = 
"Bool_t";
 
   70const char *
Char = 
"Char_t";
 
   72const char *
Int = 
"Int_t";
 
   73const char *
Long = 
"Long_t";
 
   79const char *
UInt = 
"UInt_t";
 
  145   if (!value || (*value == 0))
 
  221   v->SetBit(
BIT(20), numeric);
 
  238   Int_t len = strlen(fullname);
 
  253      if (len + numlen > maxlen)
 
  254         res.
Resize(maxlen - numlen);
 
  264   } 
while (
cnt < 10000);
 
  266   Error(
"DefineSQLName", 
"Cannot find reasonable column name for field %s", fullname);
 
  282      if (strcmp(colname, sqlname) == 0)
 
  622         const char *value = curr->
GetValue();
 
  623         if (value && (strlen(value) > 0))
 
  627      curr = recursive ? curr->
GetParent() : 
nullptr;
 
  680   case 0: std::cout << 
"Undefined type"; 
break;
 
  690      std::cout << 
"Class: " << info->
GetName();
 
  696      std::cout << 
"Member: " << elem->
GetName();
 
  700      std::cout << 
"Value: " << 
fValue;
 
  704         std::cout << 
"  type = " << (
const char *)
fPointer;
 
  708      std::cout << 
"Array ";
 
  710         std::cout << 
"  sz = " << 
fValue;
 
  715      std::cout << 
"CustomClass: " << cl->
GetName() << 
"  ver = " << 
fValue;
 
  718   default: std::cout << 
"Unknown type";
 
  720   std::cout << std::endl;
 
  787class TSqlCmdsBuffer : 
public TObject {
 
  792   virtual ~TSqlCmdsBuffer()
 
  796      fFile->SQLDeleteStatement(fBlobStmt);
 
  797      fFile->SQLDeleteStatement(fNormStmt);
 
  800   void AddValues(
Bool_t isnorm, 
const char *values)
 
  821class TSqlRegistry : 
public TObject {
 
  825      : 
TObject(), fFile(0), fKeyId(0), fLastObjId(-1), fCmds(0), fFirstObjId(0), fCurrentObjId(0), fCurrentObjClass(0),
 
  826        fLastLongStrId(0), fPool(), fLongStrValues(), fRegValues(), fRegStmt(0)
 
  839   Int_t fLastLongStrId;
 
  847   virtual ~TSqlRegistry()
 
  855   Long64_t GetNextObjId() { 
return ++fLastObjId; }
 
  857   void AddSqlCmd(
const char *query)
 
  869      TSqlCmdsBuffer *buf = (TSqlCmdsBuffer *)fPool.
GetValue(sqlinfo);
 
  871         buf = 
new TSqlCmdsBuffer(fFile, sqlinfo);
 
  872         fPool.
Add(sqlinfo, buf);
 
  877   void ConvertSqlValues(
TObjArray &values, 
const char *tablename)
 
  883      if ((values.
GetLast() < 0) || (tablename == 0))
 
  888      Int_t maxsize = 50000;
 
  889      TString sqlcmd(maxsize), value, onecmd, cmdmask;
 
  895      while ((cmd = iter()) != 0) {
 
  897         if (sqlcmd.Length() == 0)
 
  898            sqlcmd.Form(
"INSERT INTO %s%s%s VALUES (%s)", quote, tablename, quote, cmd->
GetName());
 
  905         if (!canbelong || (sqlcmd.Length() > maxsize * 0.9)) {
 
  906            AddSqlCmd(sqlcmd.Data());
 
  911      if (sqlcmd.Length() > 0)
 
  912         AddSqlCmd(sqlcmd.Data());
 
  915   void ConvertPoolValues()
 
  920         TSqlCmdsBuffer *buf = (TSqlCmdsBuffer *)fPool.
GetValue(sqlinfo);
 
  925         if (buf->fBlobCmds.GetLast() >= 0)
 
  929            buf->fBlobStmt->Process();
 
  931            buf->fNormStmt->Process();
 
  942      Long64_t indx = objid - fFirstObjId;
 
  944         Error(
"AddRegCmd", 
"Something wrong with objid = %lld", objid);
 
  953            const char *pars = fFile->
IsOracle() ? 
":1, :2, :3, :4" : 
"?, ?, ?, ?";
 
  974   Int_t AddLongString(
const char *strvalue)
 
  979      if (fLastLongStrId == 0)
 
  981      Int_t strid = ++fLastLongStrId;
 
  987      cmd.
Form(
"%lld, %d, %s", fCurrentObjId, strid, value.
Data());
 
  996      TSqlCmdsBuffer *buf = GetCmdsBuffer(sqlinfo);
 
 1023         buf->fNormStmt = stmt;
 
 1031         const char *value = columns->
GetColumn(ncol);
 
 1034         stmt->
SetString(ncol, value, sizelimit);
 
 1045         if (InsertToNormalTableOracle(columns, sqlinfo))
 
 1065      TSqlCmdsBuffer *buf = GetCmdsBuffer(sqlinfo);
 
 1077class TSqlRawBuffer : 
public TObject {
 
 1081      : 
TObject(), fFile(0), fInfo(0), fCmdBuf(0), fObjId(0), fRawId(0), fValueMask(), fValueQuote(0), fMaxStrSize(255)
 
 1085      fCmdBuf = reg->GetCmdsBuffer(sqlinfo);
 
 1086      fObjId = reg->fCurrentObjId;
 
 1088      fValueMask.Form(
"%lld, %s, %s%s%s, %s", fObjId, 
"%d", fValueQuote, 
"%s", fValueQuote, 
"%s");
 
 1089      fMaxStrSize = reg->fFile->SQLSmallTextTypeLimit();
 
 1092   virtual ~TSqlRawBuffer()
 
 1096      if ((stmt != 0) && fFile->
IsOracle()) {
 
 1099         fCmdBuf->fBlobStmt = 0;
 
 1103   Bool_t IsAnyData()
 const { 
return fRawId > 0; }
 
 1105   void AddLine(
const char *
name, 
const char *value, 
const char *topname = 0, 
const char *
ns = 0)
 
 1122            const char *params = fFile->
IsOracle() ? 
":1, :2, :3, :4" : 
"?, ?, ?, ?";
 
 1123            sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%s)", quote, fInfo->GetRawTableName(), quote, params);
 
 1125            fCmdBuf->fBlobStmt = stmt;
 
 1130      const char *fullname = 
name;
 
 1131      if ((topname != 0) && (
ns != 0)) {
 
 1135         fullname = buf.
Data();
 
 1143         stmt->
SetInt(1, fRawId++);
 
 1144         stmt->
SetString(2, fullname, fMaxStrSize);
 
 1151         cmd.
Form(fValueMask.Data(), fRawId++, fullname, valuebuf.Data());
 
 1158   TSqlCmdsBuffer *fCmdBuf;
 
 1162   const char *fValueQuote;
 
 1190   if ((
file == 0) || (cmds == 0))
 
 1206   reg.ConvertPoolValues();
 
 1219   const char *
ns = reg->fFile->SQLNameSeparator();
 
 1241         Error(
"PerformConversion", 
"version without class");
 
 1258         Long64_t objid = reg->GetNextObjId();
 
 1260         sobjid.
Form(
"%lld", objid);
 
 1281      const char *tname = (
const char *)
fPointer;
 
 1299         Int_t size = strlen(value);
 
 1300         if (size > reg->fFile->SQLSmallTextTypeLimit()) {
 
 1301            Int_t strid = reg->AddLongString(value);
 
 1302            buf = reg->fFile->CodeLongString(reg->fCurrentObjId, strid);
 
 1331   if ((cl == 0) || (objid < 0))
 
 1335      std::cout << 
"Store object " << objid << 
" cl = " << cl->
GetName() << std::endl;
 
 1342   Long64_t oldid = reg->fCurrentObjId;
 
 1343   TClass *oldcl = reg->fCurrentObjClass;
 
 1345   reg->fCurrentObjId = objid;
 
 1346   reg->fCurrentObjClass = cl;
 
 1365      std::cout << 
"Store object " << objid << 
" of class " << cl->
GetName() << 
"  normal = " << normstore
 
 1366                << 
" sqltype = " << 
GetType() << std::endl;
 
 1372      TSQLClassInfo *sqlinfo = reg->fFile->RequestSQLClassInfo(cl);
 
 1373      TSqlRawBuffer rawdata(reg, sqlinfo);
 
 1380      res = rawdata.IsAnyData();
 
 1384      reg->AddRegCmd(objid, cl);
 
 1386   reg->fCurrentObjId = oldid;
 
 1387   reg->fCurrentObjClass = oldcl;
 
 1429   TSqlRawBuffer rawdata(reg, sqlinfo);
 
 1434   columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
 
 1441         Error(
"StoreClassInNormalForm", 
"CAN NOT BE");
 
 1450         Error(
"StoreClassInNormalForm", 
"Element %s typ=%d has problem with normal store ", elem->
GetName(),
 
 1457      Int_t blobid = rawdata.fRawId; 
 
 1466      if (blobid == rawdata.fRawId)
 
 1477      if (reg->fFile->GetUseSuffixes())
 
 1483   reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
 
 1485   reg->InsertToNormalTable(&columns, sqlinfo);
 
 1503      buf.
Form(
"%s%d%s", 
"[", ix, 
"]");
 
 1523      std::cout << 
"Element " << elem->
GetName() << 
"   type = " << typ << 
"  column = " << columntyp << std::endl;
 
 1532      Int_t len = value ? strlen(value) : 0;
 
 1534      Int_t sizelimit = reg->fFile->SQLSmallTextTypeLimit();
 
 1536      const char *stype = reg->fFile->SQLSmallTextType();
 
 1538      if (len <= sizelimit)
 
 1541         Int_t strid = reg->AddLongString(value);
 
 1542         TString buf = reg->fFile->CodeLongString(reg->fCurrentObjId, strid);
 
 1550      Long64_t objid = reg->fCurrentObjId;
 
 1580         objid = reg->GetNextObjId();
 
 1612         Error(
"kColNormObject", 
"child->StoreObject fails");
 
 1672         Error(
"StoreElementInNormalForm", 
"Enexpected number %d for simple element %s", 
NumChilds(), elem->
GetName());
 
 1680      const char *value = child->
GetValue();
 
 1684      const char *sqltype = reg->fFile->SQLCompatibleType(typ);
 
 1695         Error(
"StoreElementInNormalForm", 
"In fixed array %s only array node should be", elem->
GetName());
 
 1700      const char *sqltype = reg->fFile->SQLCompatibleType(typ % 20);
 
 1707         const char *value = child->
GetValue();
 
 1714         while (index < last) {
 
 1751   const char *
ns = reg->fFile->SQLNameSeparator();
 
 1760      Long64_t objid = reg->GetNextObjId();
 
 1765      sobjid.
Form(
"%lld", objid);
 
 1789   if ((ver_cl == 0) || (info_cl == 0) || (ver_cl != info_cl) || (ver_cl->
GetClassVersion() != info_ver))
 
 1829   columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
 
 1835   reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
 
 1837   reg->InsertToNormalTable(&columns, sqlinfo);
 
 1848   const char *value = 0;
 
 1858   columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
 
 1861   reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
 
 1863   reg->InsertToNormalTable(&columns, sqlinfo);
 
 1903   if ((lenbig != 0) && (chars == 0))
 
 1907      value = chars->GetValue();
 
 1937      if ((
f->GetArrayLimit() < 0) || (elem->
GetArrayLength() <= 
f->GetArrayLimit()))
 
 2025   const char *elemname = elem->
GetName();
 
 2030      if (
f->GetUseSuffixes()) {
 
 2031         colname += 
f->SQLNameSeparator();
 
 2045      if (
f->GetUseSuffixes())
 
 2052      if (
f->GetUseSuffixes())
 
 2060      if (
f->GetUseSuffixes())
 
 2067      if (
f->GetUseSuffixes())
 
 2074      if (
f->GetUseSuffixes())
 
 2081      if (
f->GetUseSuffixes())
 
 2088      if (
f->GetUseSuffixes())
 
 2095      if (
f->GetUseSuffixes())
 
 2110   if ((elem == 0) || (data == 0))
 
 2116      std::cout << 
"TSQLStructure::LocateElementColumn " << elem->
GetName() << 
" coltyp = " << coltype << 
" : " 
 2122   const char *elemname = elem->
GetName();
 
 2147      const char *clname = elemname;
 
 2189      const char *strobjid = data->
GetValue();
 
 2257      const char *value = data->
GetValue();
 
 2260      Int_t strid = 
f->IsLongStringCode(objid, value);
 
 2266         if (
f->GetLongString(objid, strid, buf2))
 
 2267            value = buf2.
Data();
 
 2269      Int_t len = (value == 0) ? 0 : strlen(value);
 
 2323   const char *value = tobjdata->
GetValue();
 
 2324   if ((value != 0) && (strlen(value) > 0))
 
 2343   if (tstringdata == 0)
 
 2348   const char *value = tstringdata->
GetValue();
 
 2350   Int_t len = (value == 0) ? 0 : strlen(value);
 
 2370   if (strcmp(quote, 
"\"") == 0)
 
 2371      s.ReplaceAll(
"\"", 
"\\\"");
 
 2373      s.ReplaceAll(
"'", 
"''");
 
char * Form(const char *fmt,...)
 
Converts data to SQL statements or read data from SQL tables.
 
Bool_t SqlObjectInfo(Long64_t objid, TString &clname, Version_t &version)
Returns object info like classname and version Should be taken from buffer, which is produced in the ...
 
TSQLObjectData * SqlObjectData(Long64_t objid, TSQLClassInfo *sqlinfo)
Creates TSQLObjectData for specified object id and specified class.
 
TClass instances represent classes, structs and namespaces in the ROOT type system.
 
Version_t GetClassVersion() const
 
virtual const char * GetName() const
Return name of this collection.
 
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
 
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection).
 
void DeleteValues()
Remove all (key,value) pairs from the map AND delete the values when they are allocated on the heap.
 
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
 
virtual const char * GetName() const
Returns name of object.
 
virtual void AddAtAndExpand(TObject *obj, Int_t idx)
Add object at position idx.
 
TObject * Last() const
Return the object in the last filled slot. Returns 0 if no entries.
 
virtual void Delete(Option_t *option="")
Remove all objects from the array AND delete all heap based objects.
 
Int_t GetLast() const
Return index of last object in array.
 
TObject * At(Int_t idx) const
 
Collectable string class.
 
Mother of all ROOT objects.
 
virtual const char * GetName() const
Returns name of object.
 
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
 
virtual void Delete(Option_t *option="")
Delete this object.
 
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
 
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
 
const char * GetSQLName() const
 
Contains information about tables specific to one class and version.
 
Bool_t IsClassTableExist() const
 
const char * GetClassTableName() const
 
const char * GetRawTableName() const
 
TString fValue
! value of the table column
 
TSQLColumnData(const char *name, const char *sqltype, const char *value, Bool_t numeric)
normal constructor of TSQLColumnData class specifies name, type and value for one column
 
Access an SQL db via the TFile interface.
 
const char * SQLIdentifierQuote() const
 
Bool_t SQLCanStatement()
Test if DB support statement and number of open statements is not exceeded.
 
Bool_t CreateRawTable(TSQLClassInfo *sqlinfo)
Create the raw table.
 
const char * SQLValueQuote() const
 
Bool_t IsMySQL() const
checks, if MySQL database
 
Bool_t IsOracle() const
checks, if Oracle database
 
Int_t SQLSmallTextTypeLimit() const
 
TSQLStatement * SQLStatement(const char *cmd, Int_t bufsize=1000)
Produces SQL statement for currently conected DB server.
 
void SQLDeleteStatement(TSQLStatement *stmt)
delete statement and decrease counter
 
Int_t SQLMaxIdentifierLength()
returns maximum allowed length of identifiers
 
Bool_t IsODBC() const
checks, if ODBC driver used for database connection
 
Bool_t VerifyLongStringTable()
Checks that table for big strings is exists If not, will be created.
 
TSQLObjectData is used in TBufferSQL2 class in reading procedure.
 
Bool_t LocateColumn(const char *colname, Bool_t isblob=kFALSE)
locate column of that name in results
 
void ShiftToNextValue()
shift to next column or next row in blob data
 
const char * GetValue() const
 
TSQLClassInfo * GetInfo() const
 
void AddUnpack(const char *tname, const char *value)
add emulated data this used to place version or TObject raw data, read from normal tables
 
Bool_t PrepareForRawData()
prepare to read data from raw table
 
void AddUnpackInt(const char *tname, Int_t value)
emulate integer value in raw data
 
virtual Bool_t NextIteration()=0
 
virtual Bool_t SetString(Int_t, const char *, Int_t=256)
 
virtual Bool_t Process()=0
 
virtual Bool_t SetInt(Int_t, Int_t)
 
virtual Bool_t SetLong64(Int_t, Long64_t)
 
This is hierarchical structure, which is created when data is written by TBufferSQL2.
 
Bool_t RecognizeTString(const char *&value)
prove that structure contains TString data
 
TSQLStructure * GetParent() const
 
Int_t LocateElementColumn(TSQLFile *f, TBufferSQL2 *buf, TSQLObjectData *data)
find column in TSQLObjectData object, which correspond to current element
 
TClass * GetObjectClass() const
return object class if type kSqlObject
 
virtual void Print(Option_t *option="") const
print content of complete structure
 
Bool_t TryConvertObjectArray(TSqlRegistry *reg, TSqlRawBuffer *blobs)
tries to write array of objects as list of object references in streamer table, while objects itself ...
 
static void AddStrBrackets(TString &s, const char *quote)
adds quotes around string value and replaces some special symbols
 
void Add(TSQLStructure *child)
Add child structure.
 
void AddVersion(const TClass *cl, Int_t version=-100)
add child as version
 
void SetVersion(const TClass *cl, Int_t version=-100)
set structure type as kSqlVersion
 
void SetObjectPointer(Long64_t ptrid)
set structure type as kSqlPointer
 
void SetValue(const char *value, const char *tname=0)
set structure type as kSqlValue
 
void SetArray(Int_t sz=-1)
Set structure as array element.
 
static Bool_t IsNumericType(Int_t typ)
defines if value is numeric and not requires quotes when writing
 
Int_t GetElementNumber() const
returns number of TStremerElement in TStreamerInfo
 
TSQLObjectData * GetObjectData(Bool_t search=false)
searches for objects data
 
TStreamerInfo * GetStreamerInfo() const
return TStreamerInfo* if type is kSqlStreamerInfo
 
void PerformConversion(TSqlRegistry *reg, TSqlRawBuffer *blobs, const char *topname, Bool_t useblob=kFALSE)
perform conversion of structure to sql statements first tries convert it to normal form if fails,...
 
Bool_t StoreTObject(TSqlRegistry *reg)
store data of TObject in special table workaround custom TObject streamer
 
TSQLStructure * GetChild(Int_t n) const
return child structure of index n
 
Bool_t GetClassInfo(TClass *&cl, Version_t &version)
provides class info if structure kSqlStreamerInfo or kSqlCustomClass
 
void SetCustomClass(const TClass *cl, Version_t version)
set structure type as kSqlCustomClass
 
const char * GetValue() const
returns value for different structure kinds has different sense For kSqlVersion it version,...
 
static Bool_t UnpackTString(TSQLFile *f, TBufferSQL2 *buf, TSQLObjectData *data, Long64_t objid, Int_t clversion)
Unpack TString data in form, accepted by custom TString streamer.
 
static Int_t DefineElementColumnType(TStreamerElement *elem, TSQLFile *f)
defines which kind of column can be assigned for this element Possible cases kColSimple - basic data ...
 
Int_t GetRepeatCounter() const
 
Long64_t FindMaxObjectId()
define maximum reference id, used for objects
 
Bool_t StoreObjectInNormalForm(TSqlRegistry *reg)
this function verify object child elements and calls transformation to class table
 
void SetStreamerInfo(const TStreamerInfo *info)
set structure type as kSqlStreamerInfo
 
void AddObjectData(TSQLObjectData *objdata)
add element with pointer to object data
 
void SetArrayIndex(Int_t indx, Int_t cnt=1)
set array index for this structure
 
Bool_t StoreClassInNormalForm(TSqlRegistry *reg)
produces data for complete class table where not possible, raw data for some elements are created
 
static TString MakeArrayIndex(TStreamerElement *elem, Int_t n)
produce string with complete index like [1][2][0]
 
Version_t GetCustomClassVersion() const
return custom class version if structures is kSqlCustomClass
 
static Bool_t UnpackTObject(TSQLFile *f, TBufferSQL2 *buf, TSQLObjectData *data, Long64_t objid, Int_t clversion)
Unpack TObject data in form, accepted by custom TObject streamer.
 
Bool_t StoreObject(TSqlRegistry *reg, Long64_t objid, TClass *cl, Bool_t registerobj=kTRUE)
convert object data to sql statements if normal (column-wise) representation is not possible,...
 
void ChangeValueOnly(const char *value)
change value of this structure used as "workaround" to keep object id in kSqlElement node
 
Bool_t ConvertToTables(TSQLFile *f, Long64_t keyid, TObjArray *cmds)
Convert structure to sql statements This function is called immidiately after TBufferSQL2 produces th...
 
void SetCustomElement(TStreamerElement *elem)
set structure type as kSqlCustomElement
 
const char * GetValueType() const
return value type if structure is kSqlValue
 
static TString DefineElementColumnName(TStreamerElement *elem, TSQLFile *f, Int_t indx=0)
returns name of the column in class table for that element
 
Int_t GetArrayIndex() const
 
void SetObjectData(TSQLObjectData *objdata)
set element to be used for object data
 
void SetParent(TSQLStructure *p)
 
void SetObjectRef(Long64_t refid, const TClass *cl)
set structure type as kSqlObject
 
Long64_t DefineObjectId(Bool_t recursive=kTRUE)
defines current object id, to which this structure belong make life complicated, because some objects...
 
TStreamerElement * GetElement() const
return TStremerElement* if type is kSqlElement
 
TClass * GetVersionClass() const
return class for version tag if type is kSqlVersion
 
void PrintLevel(Int_t level) const
print content of current structure
 
static const char * GetSimpleTypeName(Int_t typ)
provides name for basic types used as suffix for column name or field suffix in raw table
 
Bool_t StoreElementInNormalForm(TSqlRegistry *reg, TSQLTableData *columns)
tries to store element data in column
 
Bool_t CheckNormalClassPair(TSQLStructure *vers, TSQLStructure *info)
check if pair of two element corresponds to start of object, stored in normal form
 
Int_t NumChilds() const
number of child structures
 
virtual ~TSQLStructure()
destructor
 
void AddValue(const char *value, const char *tname=0)
Add child structure as value.
 
TClass * GetCustomClass() const
return element custom class if structures is kSqlCustomClass
 
Bool_t StoreTString(TSqlRegistry *reg)
store data of TString in special table it is required when TString stored as pointer and reference to...
 
void SetClassStreamer(const TClass *cl)
set structure type as kSqlClassStreamer
 
void SetStreamerElement(const TStreamerElement *elem, Int_t number)
set structure type as kSqlElement
 
void ChildArrayIndex(Int_t index, Int_t cnt=1)
set array index for last child element if (cnt<=1) return;
 
void AddColumn(const char *name, Long64_t value)
Add INT column to list of columns.
 
TString DefineSQLName(const char *fullname)
produce suitable name for column, taking into account length limitation
 
Bool_t HasSQLName(const char *sqlname)
checks if columns list already has that sql name
 
const char * GetColumn(Int_t n)
return column value
 
Bool_t IsNumeric(Int_t n)
identifies if column has numeric value
 
TObjArray fColumns
! collection of columns
 
Int_t GetNumColumns()
returns number of columns in provided set
 
TObjArray * fColInfos
! array with TSQLClassColumnInfo, used later for TSQLClassInfo
 
TSQLTableData(TSQLFile *f=nullptr, TSQLClassInfo *info=nullptr)
normal constructor
 
virtual ~TSQLTableData()
destructor
 
TObjArray * TakeColInfos()
take ownership over colinfos
 
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element.
 
Int_t GetArrayDim() const
 
TMemberStreamer * GetStreamer() const
Return the local streamer object.
 
Int_t GetArrayLength() const
 
Int_t GetMaxIndex(Int_t i) const
 
Describe Streamer information for one class version.
 
@ kUChar
Equal to TDataType's kchar.
 
TClass * GetClass() const
 
Int_t GetClassVersion() const
 
const char * Data() const
 
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
 
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
 
Long64_t Atoll() const
Return long long value of string.
 
static constexpr double s
 
static constexpr double ns
 
const char * cfg_UseIndexes
 
const char * StringsTable
 
const char * ObjectsTableIndex
 
const char * ObjectSuffix
 
const char * KeysTableIndex
 
Long64_t atol64(const char *value)
 
const char * TStringValue
 
const char * cfg_TablesType
 
const Int_t Ids_FirstObject
 
const char * ObjectRef_Arr
 
const Int_t Ids_StreamerInfos
 
const char * ParentSuffix
 
const char * cfg_ArrayLimit
 
const char * TObjectProcessId
 
const char * PointerSuffix
 
const char * IdsTableIndex
 
const char * cfg_UseTransactions
 
const char * cfg_LockingMode
 
const char * cfg_UseSufixes
 
const char * ObjectsTable
 
const char * cfg_ModifyCounter
 
const char * TObjectUniqueId
 
const char * LongStrPrefix