DB
typedef struct Database { char *name; // database name Catalog cat; // meta-data ... } *DB;
Possible implementation of Reln object ...
Reln
typedef struct Relation { char *name; // table name File file; // fd for table file ... } *Reln;