|
Botan 3.13.0
Crypto and TLS for C&
|
#include <database.h>
Public Member Functions | |
| const std::vector< Column > & | columns () const |
| Table_Schema & | if_not_exists () |
| bool | is_if_not_exists () const |
| const std::string & | name () const |
| Table_Schema (std::string name, std::vector< Column > columns) | |
The name and columns of a table, used with create_table
Definition at line 282 of file database.h.
|
inline |
Declare a table
Definition at line 289 of file database.h.
References columns(), and name().
Referenced by if_not_exists().
|
inline |
Query the columns of the table
Definition at line 311 of file database.h.
Referenced by Botan::Sqlite3_Database::create_table(), and Table_Schema().
|
inline |
Only create the table if it does not already exist
Definition at line 296 of file database.h.
References Table_Schema().
|
inline |
Query whether creation is conditional
Definition at line 317 of file database.h.
Referenced by Botan::Sqlite3_Database::create_table().
|
inline |
Query the table name
Definition at line 305 of file database.h.
Referenced by Botan::Sqlite3_Database::create_table(), and Table_Schema().