18 #include "Riostream.h"
19 #include "KVDBRecord.h"
20 #include "KVDBTable.h"
42 const Char_t* title): TFolder(name, title)
51 KVDBRecord::~KVDBRecord()
53 gROOT->GetListOfCleanups()->Remove(
this);
74 if (check &&
GetKey(key->GetName())) {
75 TObject::Warning(
"AddKey(KVDBKey*,Bool_t)",
76 "A key named %s already exists.", key->GetName());
104 if (check &&
GetKey(name)) {
105 TObject::Warning(
"AddKey(const Char_t*, const Char_t*,Bool_t)",
106 "A key named %s already exists.", name);
130 return key->
LinkTo(rec, linkback);
132 TObject::Warning(
"AddLink(const Char_t*,KVDBRecord*)",
133 "No key named %s found.", key_name);
152 key->
Unlink(rec, linkback);
154 TObject::Warning(
"RemoveLink(const Char_t*,KVDBRecord*)",
155 "No key named %s found.", key_name);
174 TObject::Warning(
"RemoveAllLinks(const Char_t*)",
175 "No key named %s found.", key_name);
194 TObject::Warning(
"GetLink(const Char_t*,const Char_t*)const",
195 "No key named %s found.", key);
225 cout <<
"_______________________________________________________" <<
227 cout << GetName() <<
" " << GetTitle() << endl;
228 cout <<
"Available Keys :" << endl;
231 while ((key = (
KVDBKey*) next())) {
232 cout <<
" " << key->GetName() << endl;
234 cout <<
"_______________________________________________________" <<
262 dynamic_cast < KVDBRecord*
>(
const_cast < TObject*
>(obj));
293 knom.Prepend(
"Key:");
294 return (
KVDBKey*) FindObject(knom.Data());
303 return (TList*) GetListOfFolders();
Cross-reference in a KVDataBase.
virtual void SetParent(KVDBRecord *parent)
virtual KVRList * GetLinks() const
return the list of cross-referenced objects
virtual KVDBRecord * GetLink(const Char_t *link) const
virtual void Unlink(KVDBRecord *rec, Bool_t linkback=kTRUE)
virtual Bool_t LinkTo(KVDBRecord *rec, Bool_t linkback=kTRUE)
Record folder for the database.
virtual void SetTable(const KVDBTable *table)
virtual void Print(Option_t *option="") const
virtual KVDBKey * GetKey(const Char_t *key) const
virtual void ls(Option_t *option="*") const
virtual Bool_t AddKey(KVDBKey *key, Bool_t check=kTRUE)
virtual KVDBRecord * GetLink(const Char_t *key, const Char_t *link) const
Returns the record named "link" in the table named "key".
virtual Int_t Compare(const TObject *obj) const
TString fFullPathTable
full path to parent table in folder structure
virtual Bool_t AddLink(const Char_t *key_name, KVDBRecord *rec, Bool_t linkback=kTRUE)
virtual void RemoveLink(const Char_t *key_name, KVDBRecord *rec, Bool_t linkback=kTRUE)
Remove the link between this record and the record "rec" in the DB table"key_name".
virtual KVRList * GetLinks(const Char_t *key) const
Returns the list of records linked to this record in table "key".
virtual void RemoveAllLinks(const Char_t *key)
Remove all links between this record and the records in the DB table"key_name".
virtual Int_t GetNumber() const
virtual TList * GetKeys() const
virtual KVDBTable * GetTable() const
TObject * FindObject(const Char_t *) const
Wrapper for TRefArray adding some functionality.
Table in an SQLite database.