Lightweight 0.1.0
|
Holds the definition of a table in a SQL database as read from the database schema. More...
#include <SqlSchema.hpp>
Public Attributes | |
std::string | name |
The name of the table. | |
std::vector< Column > | columns {} |
The columns of the table. | |
std::vector< ForeignKeyConstraint > | foreignKeys {} |
The foreign keys of the table. | |
std::vector< ForeignKeyConstraint > | externalForeignKeys {} |
The foreign keys of other tables that reference this table. | |
std::vector< std::string > | primaryKeys {} |
The primary keys of the table. | |
Holds the definition of a table in a SQL database as read from the database schema.
Definition at line 127 of file SqlSchema.hpp.
std::string SqlSchema::Table::name |
The name of the table.
Definition at line 132 of file SqlSchema.hpp.
std::vector<Column> SqlSchema::Table::columns {} |
The columns of the table.
Definition at line 135 of file SqlSchema.hpp.
std::vector<ForeignKeyConstraint> SqlSchema::Table::foreignKeys {} |
The foreign keys of the table.
Definition at line 138 of file SqlSchema.hpp.
std::vector<ForeignKeyConstraint> SqlSchema::Table::externalForeignKeys {} |
The foreign keys of other tables that reference this table.
Definition at line 141 of file SqlSchema.hpp.
std::vector<std::string> SqlSchema::Table::primaryKeys {} |
The primary keys of the table.
Definition at line 144 of file SqlSchema.hpp.