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

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

#include <SqlSchema.hpp>

Public Attributes

std::string name = {}
 
SqlColumnTypeDefinition type = {}
 
std::string dialectDependantTypeString = {}
 
bool isNullable = true
 
bool isUnique = false
 
size_t size = 0
 
unsigned short decimalDigits = 0
 
bool isAutoIncrement = false
 
bool isPrimaryKey = false
 
bool isForeignKey = false
 
std::optional< ForeignKeyConstraint > foreignKeyConstraint {}
 
std::string defaultValue = {}
 

Detailed Description

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

Definition at line 88 of file SqlSchema.hpp.

Member Data Documentation

◆ name

std::string SqlSchema::Column::name = {}

Definition at line 90 of file SqlSchema.hpp.

◆ type

SqlColumnTypeDefinition SqlSchema::Column::type = {}

Definition at line 91 of file SqlSchema.hpp.

◆ dialectDependantTypeString

std::string SqlSchema::Column::dialectDependantTypeString = {}

Definition at line 92 of file SqlSchema.hpp.

◆ isNullable

bool SqlSchema::Column::isNullable = true

Definition at line 93 of file SqlSchema.hpp.

◆ isUnique

bool SqlSchema::Column::isUnique = false

Definition at line 94 of file SqlSchema.hpp.

◆ size

size_t SqlSchema::Column::size = 0

Definition at line 95 of file SqlSchema.hpp.

◆ decimalDigits

unsigned short SqlSchema::Column::decimalDigits = 0

Definition at line 96 of file SqlSchema.hpp.

◆ isAutoIncrement

bool SqlSchema::Column::isAutoIncrement = false

Definition at line 97 of file SqlSchema.hpp.

◆ isPrimaryKey

bool SqlSchema::Column::isPrimaryKey = false

Definition at line 98 of file SqlSchema.hpp.

◆ isForeignKey

bool SqlSchema::Column::isForeignKey = false

Definition at line 99 of file SqlSchema.hpp.

◆ foreignKeyConstraint

std::optional<ForeignKeyConstraint> SqlSchema::Column::foreignKeyConstraint {}

Definition at line 100 of file SqlSchema.hpp.

◆ defaultValue

std::string SqlSchema::Column::defaultValue = {}

Definition at line 101 of file SqlSchema.hpp.


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