Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlSchema::Table Struct Reference

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< Columncolumns {}
 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.
 

Detailed Description

Holds the definition of a table in a SQL database as read from the database schema.

Definition at line 127 of file SqlSchema.hpp.

Member Data Documentation

◆ name

std::string SqlSchema::Table::name

The name of the table.

Definition at line 132 of file SqlSchema.hpp.

◆ columns

std::vector<Column> SqlSchema::Table::columns {}

The columns of the table.

Definition at line 135 of file SqlSchema.hpp.

◆ foreignKeys

std::vector<ForeignKeyConstraint> SqlSchema::Table::foreignKeys {}

The foreign keys of the table.

Definition at line 138 of file SqlSchema.hpp.

◆ externalForeignKeys

std::vector<ForeignKeyConstraint> SqlSchema::Table::externalForeignKeys {}

The foreign keys of other tables that reference this table.

Definition at line 141 of file SqlSchema.hpp.

◆ primaryKeys

std::vector<std::string> SqlSchema::Table::primaryKeys {}

The primary keys of the table.

Definition at line 144 of file SqlSchema.hpp.


The documentation for this struct was generated from the following file: