69 const char *
Bool =
"Bool_t";
70 const char *
Char =
"Char_t";
72 const char *
Int =
"Int_t";
73 const char *
Long =
"Long_t";
79 const char *
UInt =
"UInt_t";
143 #ifdef R__VISUAL_CPLUSPLUS 144 #define FLong64 "%I64d" 145 #define FULong64 "%I64u" 147 #define FLong64 "%lld" 148 #define FULong64 "%llu" 153 if ((value == 0) || (*value == 0))
205 :
TObject(), fFile(f), fInfo(info), fColumns(), fColInfos(0)
262 Int_t len = strlen(fullname);
272 scnt.
Form(
"%d", cnt);
277 if (len + numlen > maxlen)
278 res.
Resize(maxlen - numlen);
288 }
while (cnt < 10000);
290 Error(
"DefineSQLName",
"Cannot find reasonable column name for field %s", fullname);
306 if (strcmp(colname, sqlname) == 0)
352 :
TObject(), fParent(0),
fType(0), fPointer(0),
fValue(), fArrayIndex(-1), fRepeatCnt(0), fChilds()
652 const char *value = curr->
GetValue();
653 if ((value != 0) && (strlen(value) > 0))
657 curr = recursive ? curr->
GetParent() : 0;
710 case 0: std::cout <<
"Undefined type";
break;
720 std::cout <<
"Class: " << info->
GetName();
726 std::cout <<
"Member: " << elem->
GetName();
730 std::cout <<
"Value: " <<
fValue;
734 std::cout <<
" type = " << (
const char *)
fPointer;
738 std::cout <<
"Array ";
739 if (fValue.Length() > 0)
740 std::cout <<
" sz = " << fValue;
745 std::cout <<
"CustomClass: " << cl->
GetName() <<
" ver = " <<
fValue;
748 default: std::cout <<
"Unknown type";
750 std::cout << std::endl;
817 class TSqlCmdsBuffer :
public TObject {
822 virtual ~TSqlCmdsBuffer()
826 fFile->SQLDeleteStatement(fBlobStmt);
827 fFile->SQLDeleteStatement(fNormStmt);
830 void AddValues(
Bool_t isnorm,
const char *values)
851 class TSqlRegistry :
public TObject {
855 :
TObject(), fFile(0), fKeyId(0), fLastObjId(-1), fCmds(0), fFirstObjId(0), fCurrentObjId(0), fCurrentObjClass(0),
856 fLastLongStrId(0), fPool(), fLongStrValues(), fRegValues(), fRegStmt(0)
869 Int_t fLastLongStrId;
877 virtual ~TSqlRegistry()
885 Long64_t GetNextObjId() {
return ++fLastObjId; }
887 void AddSqlCmd(
const char *query)
899 TSqlCmdsBuffer *buf = (TSqlCmdsBuffer *)fPool.
GetValue(sqlinfo);
901 buf =
new TSqlCmdsBuffer(fFile, sqlinfo);
902 fPool.
Add(sqlinfo, buf);
907 void ConvertSqlValues(
TObjArray &values,
const char *tablename)
913 if ((values.
GetLast() < 0) || (tablename == 0))
918 Int_t maxsize = 50000;
919 TString sqlcmd(maxsize), value, onecmd, cmdmask;
925 while ((cmd = iter()) != 0) {
927 if (sqlcmd.Length() == 0)
928 sqlcmd.Form(
"INSERT INTO %s%s%s VALUES (%s)", quote, tablename, quote, cmd->
GetName());
935 if (!canbelong || (sqlcmd.Length() > maxsize * 0.9)) {
936 AddSqlCmd(sqlcmd.Data());
941 if (sqlcmd.Length() > 0)
942 AddSqlCmd(sqlcmd.Data());
945 void ConvertPoolValues()
950 TSqlCmdsBuffer *buf = (TSqlCmdsBuffer *)fPool.
GetValue(sqlinfo);
955 if (buf->fBlobCmds.GetLast() >= 0)
959 buf->fBlobStmt->Process();
961 buf->fNormStmt->Process();
972 Long64_t indx = objid - fFirstObjId;
974 Error(
"AddRegCmd",
"Something wrong with objid = %lld", objid);
983 const char *pars = fFile->
IsOracle() ?
":1, :2, :3, :4" :
"?, ?, ?, ?";
1004 Int_t AddLongString(
const char *strvalue)
1009 if (fLastLongStrId == 0)
1011 Int_t strid = ++fLastLongStrId;
1017 cmd.
Form(
"%lld, %d, %s", fCurrentObjId, strid, value.
Data());
1026 TSqlCmdsBuffer *buf = GetCmdsBuffer(sqlinfo);
1053 buf->fNormStmt = stmt;
1061 const char *value = columns->
GetColumn(ncol);
1064 stmt->
SetString(ncol, value, sizelimit);
1075 if (InsertToNormalTableOracle(columns, sqlinfo))
1095 TSqlCmdsBuffer *buf = GetCmdsBuffer(sqlinfo);
1107 class TSqlRawBuffer :
public TObject {
1111 :
TObject(), fFile(0), fInfo(0), fCmdBuf(0), fObjId(0), fRawId(0), fValueMask(), fValueQuote(0), fMaxStrSize(255)
1115 fCmdBuf = reg->GetCmdsBuffer(sqlinfo);
1116 fObjId = reg->fCurrentObjId;
1117 fValueQuote = fFile->SQLValueQuote();
1118 fValueMask.Form(
"%lld, %s, %s%s%s, %s", fObjId,
"%d", fValueQuote,
"%s", fValueQuote,
"%s");
1119 fMaxStrSize = reg->fFile->SQLSmallTextTypeLimit();
1122 virtual ~TSqlRawBuffer()
1126 if ((stmt != 0) && fFile->IsOracle()) {
1129 fCmdBuf->fBlobStmt = 0;
1133 Bool_t IsAnyData()
const {
return fRawId > 0; }
1135 void AddLine(
const char *
name,
const char *value,
const char *topname = 0,
const char *
ns = 0)
1143 if (fFile->IsOracle() || fFile->IsODBC())
1144 maketmt = (fCmdBuf->fBlobStmt == 0) && fFile->SQLCanStatement();
1148 fFile->CreateRawTable(fInfo);
1150 const char *quote = fFile->SQLIdentifierQuote();
1152 const char *params = fFile->IsOracle() ?
":1, :2, :3, :4" :
"?, ?, ?, ?";
1153 sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%s)", quote, fInfo->GetRawTableName(), quote, params);
1155 fCmdBuf->fBlobStmt = stmt;
1160 const char *fullname =
name;
1161 if ((topname != 0) && (
ns != 0)) {
1165 fullname = buf.
Data();
1173 stmt->
SetInt(1, fRawId++);
1174 stmt->
SetString(2, fullname, fMaxStrSize);
1181 cmd.
Form(fValueMask.Data(), fRawId++, fullname, valuebuf.
Data());
1188 TSqlCmdsBuffer *fCmdBuf;
1192 const char *fValueQuote;
1220 if ((file == 0) || (cmds == 0))
1236 reg.ConvertPoolValues();
1249 const char *
ns = reg->fFile->SQLNameSeparator();
1271 Error(
"PerformConversion",
"version without class");
1288 Long64_t objid = reg->GetNextObjId();
1290 sobjid.
Form(
"%lld", objid);
1311 const char *tname = (
const char *)
fPointer;
1329 Int_t size = strlen(value);
1330 if (size > reg->fFile->SQLSmallTextTypeLimit()) {
1331 Int_t strid = reg->AddLongString(value);
1332 buf = reg->fFile->CodeLongString(reg->fCurrentObjId, strid);
1337 blobs->AddLine(sbuf.
Data(), value, (
fArrayIndex >= 0) ? 0 : topname, ns);
1361 if ((cl == 0) || (objid < 0))
1365 std::cout <<
"Store object " << objid <<
" cl = " << cl->
GetName() << std::endl;
1372 Long64_t oldid = reg->fCurrentObjId;
1373 TClass *oldcl = reg->fCurrentObjClass;
1375 reg->fCurrentObjId = objid;
1376 reg->fCurrentObjClass = cl;
1395 std::cout <<
"Store object " << objid <<
" of class " << cl->
GetName() <<
" normal = " << normstore
1396 <<
" sqltype = " <<
GetType() << std::endl;
1402 TSQLClassInfo *sqlinfo = reg->fFile->RequestSQLClassInfo(cl);
1403 TSqlRawBuffer rawdata(reg, sqlinfo);
1410 res = rawdata.IsAnyData();
1414 reg->AddRegCmd(objid, cl);
1416 reg->fCurrentObjId = oldid;
1417 reg->fCurrentObjClass = oldcl;
1459 TSqlRawBuffer rawdata(reg, sqlinfo);
1464 columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
1471 Error(
"StoreClassInNormalForm",
"CAN NOT BE");
1480 Error(
"StoreClassInNormalForm",
"Element %s typ=%d has problem with normal store ", elem->
GetName(),
1487 Int_t blobid = rawdata.fRawId;
1496 if (blobid == rawdata.fRawId)
1507 if (reg->fFile->GetUseSuffixes())
1513 reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
1515 reg->InsertToNormalTable(&columns, sqlinfo);
1533 buf.
Form(
"%s%d%s",
"[", ix,
"]");
1553 std::cout <<
"Element " << elem->
GetName() <<
" type = " << typ <<
" column = " << columntyp << std::endl;
1562 Int_t len = value ? strlen(value) : 0;
1564 Int_t sizelimit = reg->fFile->SQLSmallTextTypeLimit();
1566 const char *stype = reg->fFile->SQLSmallTextType();
1568 if (len <= sizelimit)
1571 Int_t strid = reg->AddLongString(value);
1572 TString buf = reg->fFile->CodeLongString(reg->fCurrentObjId, strid);
1580 Long64_t objid = reg->fCurrentObjId;
1610 objid = reg->GetNextObjId();
1642 Error(
"kColNormObject",
"child->StoreObject fails");
1702 Error(
"StoreElementInNormalForm",
"Enexpected number %d for simple element %s",
NumChilds(), elem->
GetName());
1710 const char *value = child->
GetValue();
1714 const char *sqltype = reg->fFile->SQLCompatibleType(typ);
1725 Error(
"StoreElementInNormalForm",
"In fixed array %s only array node should be", elem->
GetName());
1730 const char *sqltype = reg->fFile->SQLCompatibleType(typ % 20);
1737 const char *value = child->
GetValue();
1744 while (index < last) {
1781 const char *
ns = reg->fFile->SQLNameSeparator();
1790 Long64_t objid = reg->GetNextObjId();
1795 sobjid.
Form(
"%lld", objid);
1819 if ((ver_cl == 0) || (info_cl == 0) || (ver_cl != info_cl) || (ver_cl->
GetClassVersion() != info_ver))
1859 columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
1865 reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
1867 reg->InsertToNormalTable(&columns, sqlinfo);
1878 const char *value = 0;
1888 columns.
AddColumn(reg->fFile->SQLObjectIdColumn(), reg->fCurrentObjId);
1891 reg->fFile->CreateClassTable(sqlinfo, columns.
TakeColInfos());
1893 reg->InsertToNormalTable(&columns, sqlinfo);
1933 if ((lenbig != 0) && ((chars == 0) || (len == 0)))
1937 value = chars->GetValue();
2055 const char *elemname = elem->
GetName();
2140 if ((elem == 0) || (data == 0))
2146 std::cout <<
"TSQLStructure::LocateElementColumn " << elem->
GetName() <<
" coltyp = " << coltype <<
" : " 2152 const char *elemname = elem->
GetName();
2177 const char *clname = elemname;
2219 const char *strobjid = data->
GetValue();
2287 const char *value = data->
GetValue();
2297 value = buf2.
Data();
2299 Int_t len = (value == 0) ? 0 : strlen(value);
2353 const char *value = tobjdata->
GetValue();
2354 if ((value != 0) && (strlen(value) > 0))
2373 if (tstringdata == 0)
2378 const char *value = tstringdata->
GetValue();
2380 Int_t len = (value == 0) ? 0 : strlen(value);
2400 if (strcmp(quote,
"\"") == 0)
void SetObjectData(TSQLObjectData *objdata)
set element to be used for object data
Describe Streamer information for one class version.
const char * GetValueType() const
return value type if structure is kSqlValue
TString fName
! name of the table column
virtual const char * GetName() const
Returns name of object.
static Int_t DefineElementColumnType(TStreamerElement *elem, TSQLFile *f)
defines which kind of column can be assigned for this element Possible cases kColSimple - basic data ...
virtual Bool_t SetLong64(Int_t, Long64_t)
TSQLColumnData()
default constructor
Bool_t StoreTObject(TSqlRegistry *reg)
store data of TObject in special table workaround custom TObject streamer
const char * IdsTableIndex
TStreamerInfo * GetStreamerInfo() const
return TStreamerInfo* if type is kSqlStreamerInfo
Long64_t FindMaxObjectId()
define maximum reference id, used for objects
static Bool_t IsNumericType(Int_t typ)
defines if value is numeric and not requires quotes when writing
void ShiftToNextValue()
shift to next column or next row in blob data
const char * GetValue() const
const char * GetClassTableName() const
Version_t GetCustomClassVersion() const
return custom class version if strutures is kSqlCustomClass
Collectable string class.
Equal to TDataType's kchar.
void AddValue(const char *value, const char *tname=0)
Add child structure as value.
Bool_t fNumeric
! for numeric quotes (double quotes) are not required
virtual void Delete(Option_t *option="")
Remove all objects from the array AND delete all heap based objects.
TString & ReplaceAll(const TString &s1, const TString &s2)
Bool_t GetClassInfo(TClass *&cl, Version_t &version)
provides class info if structure kSqlStreamerInfo or kSqlCustomClass
const char * cfg_UseTransactions
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element.
static TString MakeArrayIndex(TStreamerElement *elem, Int_t n)
produce string with complete index like [1][2][0]
Int_t GetElementNumber() const
returns number of TStremerElement in TStreamerInfo
virtual Bool_t NextIteration()=0
TMemberStreamer * GetStreamer() const
Return the local streamer object.
Int_t GetNumColumns()
returns number of columns in provided set
void SQLDeleteStatement(TSQLStatement *stmt)
delete statement and decrease counter
TObjArray * fColInfos
! array with TSQLClassColumnInfo, used later for TSQLClassInfo
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection)...
Int_t IsLongStringCode(Long64_t objid, const char *value)
Checks if this is long string code returns 0, if not or string id.
TClass * GetCustomClass() const
return element custom class if strutures is kSqlCustomClass
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Contains information about tables specific to one class and version.
void SetVersion(const TClass *cl, Int_t version=-100)
set structure type as kSqlVersion
const char * cfg_LockingMode
Int_t GetArrayLength() const
TSQLStructure * GetChild(Int_t n) const
return child structure of index n
void SetObjectRef(Long64_t refid, const TClass *cl)
set structure type as kSqlObject
virtual Bool_t SetString(Int_t, const char *, Int_t=256)
TSQLObjectData * SqlObjectData(Long64_t objid, TSQLClassInfo *sqlinfo)
Creates TSQLObjectData for specified object id and specified class.
void SetValue(const char *value, const char *tname=0)
set structure type as kSqlValue
TString & Prepend(const char *cs)
TObject * At(Int_t idx) const
Int_t GetArrayDim() const
void SetParent(TSQLStructure *p)
Bool_t CheckNormalClassPair(TSQLStructure *vers, TSQLStructure *info)
check if pair of two element corresponds to start of object, stored in normal form ...
Int_t GetArrayIndex() const
const char * ParentSuffix
const char * cfg_UseIndexes
const char * GetValue() const
returns value for different structure kinds has different sense For kSqlVersion it version...
TObjArray * TakeColInfos()
take ownership over colinfos
void SetStreamerInfo(const TStreamerInfo *info)
set structure type as kSqlStreamerInfo
TSQLObjectData is used in TBufferSQL2 class in reading procedure.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
void Add(TSQLStructure *child)
Add child structure.
const char * StringsTable
Long64_t atol64(const char *value)
const char * TStringValue
TObject * Last() const
Return the object in the last filled slot. Returns 0 if no entries.
Bool_t GetUseSuffixes() const
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.
void SetStreamerElement(const TStreamerElement *elem, Int_t number)
set structure type as kSqlElement
const char * ObjectsTableIndex
Int_t NumChilds() const
number of child structures
TString fValue
! value of the table column
Bool_t RecognizeTString(const char *&value)
prove that structure contains TString data
Int_t SQLSmallTextTypeLimit() const
void ChildArrayIndex(Int_t index, Int_t cnt=1)
set array index for last child element if (cnt<=1) return;
This is hierarchical structure, which is created when data is written by TBufferSQL2.
TString & Append(const char *cs)
Bool_t StoreElementInNormalForm(TSqlRegistry *reg, TSQLTableData *columns)
tries to store element data in column
virtual void Print(Option_t *option="") const
print content of complete structure
TSQLStatement * SQLStatement(const char *cmd, Int_t bufsize=1000)
Produces SQL statement for currently conected DB server.
Bool_t IsClassTableExist() const
TStreamerElement * GetElement() const
return TStremerElement* if type is kSqlElement
const char * cfg_TablesType
Bool_t TryConvertObjectArray(TSqlRegistry *reg, TSqlRawBuffer *blobs)
tries to write array of objects as list of object references in streamer table, while objects itself ...
TObject()
TObject constructor.
const char * GetSQLName() const
Bool_t SQLCanStatement()
Test if DB support statement and number of open statements is not exceeded.
Bool_t GetLongString(Long64_t objid, Int_t strid, TString &value)
Returns value of string, extracted from special table, where long strings are stored.
Int_t GetArrayLimit() const
Bool_t StoreTString(TSqlRegistry *reg)
store data of TString in special table it is required when TString stored as pointer and reference to...
Int_t LocateElementColumn(TSQLFile *f, TBufferSQL2 *buf, TSQLObjectData *data)
find column in TSQLObjectData object, which correspond to current element
virtual ~TSQLStructure()
destructor
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.
TSQLObjectData * GetObjectData(Bool_t search=false)
searches for objects data
static TString DefineElementColumnName(TStreamerElement *elem, TSQLFile *f, Int_t indx=0)
returns name of the column in class table for that element
Int_t GetLast() const
Return index of last object in array.
const char * KeysTableIndex
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 AddColumn(const char *name, Long64_t value)
Add INT column to list of columns.
virtual void AddAtAndExpand(TObject *obj, Int_t idx)
Add object at position idx.
TClass * GetClass() const
Access an SQL db via the TFile interface.
void SetCustomClass(const TClass *cl, Version_t version)
set structure type as kSqlCustomClass
void ChangeValueOnly(const char *value)
change value of this structure used as "workaround" to keep object id in kSqlElement node ...
TString DefineSQLName(const char *fullname)
produce suitable name for column, taking into account length limitation
TSQLClassInfo * FindSQLClassInfo(const char *clname, Int_t version)
Return (if exists) TSQLClassInfo for specified class name and version.
Bool_t IsODBC() const
checks, if ODBC driver used for database connection
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Int_t GetMaxIndex(Int_t i) const
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
char * Form(const char *fmt,...)
const char * ObjectSuffix
const char * LongStrPrefix
void SetArray(Int_t sz=-1)
Set structure as array element.
Bool_t HasSQLName(const char *sqlname)
checks if columns list already has that sql name
The ROOT global object gROOT contains a list of all defined classes.
void AddObjectData(TSQLObjectData *objdata)
add element with pointer to object data
TSQLTableData(TSQLFile *f=0, TSQLClassInfo *info=0)
normal constructor
const char * GetRawTableName() const
const char * TObjectUniqueId
const char * ObjectRef_Arr
Bool_t LocateColumn(const char *colname, Bool_t isblob=kFALSE)
locate column of that name in results
void DeleteValues()
Remove all (key,value) pairs from the map AND delete the values when they are allocated on the heap...
virtual ~TSQLColumnData()
TSQLColumnData destructor.
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 IsNumeric(Int_t n)
identifies if column has numeric value
void SetCustomElement(TStreamerElement *elem)
set structure type as kSqlCustomElement
Bool_t PrepareForRawData()
prepare to read data from raw table
Converts data to SQL statements or read data from SQL tables.
TClass * GetObjectClass() const
return object class if type kSqlObject
Version_t GetClassVersion() const
const Int_t Ids_FirstObject
Bool_t IsOracle() const
checks, if Oracle database
Bool_t CreateRawTable(TSQLClassInfo *sqlinfo)
Create the raw table.
void SetObjectPointer(Long64_t ptrid)
set structure type as kSqlPointer
void AddVersion(const TClass *cl, Int_t version=-100)
add child as version
TClass * GetVersionClass() const
return class for version tag if type is kSqlVersion
static const char * GetSimpleTypeName(Int_t typ)
provides name for basic types used as suffix for column name or field suffix in raw table ...
void AddUnpack(const char *tname, const char *value)
add emulated data this used to place version or TObject raw data, read from normal tables ...
const char * SQLValueQuote() const
TSQLClassInfo * GetInfo() const
const Int_t Ids_StreamerInfos
const char * TObjectProcessId
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
const char * GetColumn(Int_t n)
return column value
static void AddStrBrackets(TString &s, const char *quote)
adds quotes around string value and replaces some special symbols
static constexpr double s
const char * cfg_ArrayLimit
const char * SQLNameSeparator() const
Bool_t IsMySQL() const
checks, if MySQL database
Mother of all ROOT objects.
TString fType
! type of the table column
Int_t GetClassVersion() const
void AddUnpackInt(const char *tname, Int_t value)
emulate integer value in raw data
Bool_t StoreClassInNormalForm(TSqlRegistry *reg)
produces data for complete class table where not possible, raw data for some elements are created ...
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 ...
Bool_t VerifyLongStringTable()
Checks that table for big strings is exists If not, will be created.
const char * PointerSuffix
const char * ObjectsTable
Long64_t DefineObjectId(Bool_t recursive=kTRUE)
defines current object id, to which this structure belong make life complicated, because some objects...
virtual Bool_t Process()=0
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
Bool_t StoreObjectInNormalForm(TSqlRegistry *reg)
this function verify object child elements and calls transformation to class table ...
def normal(shape, name=None)
Bool_t ConvertToTables(TSQLFile *f, Long64_t keyid, TObjArray *cmds)
Convert structure to sql statements This function is called immidiately after TBufferSQL2 produces th...
Int_t GetRepeatCounter() const
virtual const char * GetName() const
Returns name of object.
virtual Bool_t SetInt(Int_t, Int_t)
Int_t SQLMaxIdentifierLength()
returns maximum allowed length of identifiers
void PrintLevel(Int_t level) const
print content of current structure
static constexpr double ns
const char * SQLIdentifierQuote() const
TSQLStructure * GetParent() const
virtual const char * GetName() const
Return name of this collection.
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
TObjArray fColumns
! collection of columns
const char * cfg_UseSufixes
const char * Data() const
virtual ~TSQLTableData()
destructor
void SetArrayIndex(Int_t indx, Int_t cnt=1)
set array index for this structure
const char * cfg_ModifyCounter
void SetClassStreamer(const TClass *cl)
set structure type as kSqlClassStreamer