Started with classes for keeping track of the database schema.
Class to represent the contents of pg_type catalog table.
This commit is contained in:
parent
202e6e431a
commit
424cbc9e2e
6 changed files with 192 additions and 0 deletions
16
pgsqldatabasecatalogue.h
Normal file
16
pgsqldatabasecatalogue.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef PGSQLDATABASECATALOGUE_H
|
||||
#define PGSQLDATABASECATALOGUE_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
class PgTypeContainer;
|
||||
|
||||
class PgsqlDatabaseCatalogue {
|
||||
public:
|
||||
PgsqlDatabaseCatalogue();
|
||||
|
||||
private:
|
||||
PgTypeContainer *m_types;
|
||||
};
|
||||
|
||||
#endif // PGSQLDATABASECATALOGUE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue