Lightweight 0.1.0
|
SQL Query builder class is the starting point of building sql queries to execute.
To create a database you need to use Migration()
function provided by the SqlQueryBuilder
class, then use API defined in SqlMigrationQueryBuilder
to construct sql query to migrate to another schema or create a databse with the given schema. Detailed documentation can be found on separate documentation pages for each of the classes in the hirerarchy, here we present overall usage of the library. Following options exist.
CreateTable(tableName)
Following calls can be chained, for example CreateTable("test").Column(first).Column(second)...
Available functions:PrimaryKey(std::string columnName, SqlColumnTypeDefinition columnType)
PrimaryKeyWithAutoIncrement( std::string columnName, SqlColumnTypeDefinition columnType )
SqlColumnTypeDefinitions::Bigint
Column(std::string columnName, SqlColumnTypeDefinition columnType)
, Column(SqlColumnDeclaration column)
SqlColumnDeclaration
can be used as an argument.RequiredColumn(std::string columnName, SqlColumnTypeDefinition columnType)
Timestamps()
ForeignKey(std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition foreignKey)
RequiredForeignKey
function.CreateTable("test").Column(first).UniqueIndex()
.Unique()
enables the UNIQUE constrain on the last declared column.Index()
enables the INDEX constrain on the last declared column.UniqueIndex()
enables the UNIQUE and INDEX constrain on the last declared column.AlterTable(tableName)
Available functions:RenameTo(std::string_view newTableName)
RenameColumn(std::string_view oldColumnName, std::string_view newColumnName)
DropColumn(std::string_view columnName)
AddIndex(std::string_view columnName)
AddUniqueIndex(std::string_view columnName)
DropIndex(std::string_view columnName)
DropTable(tableName)
To insert elements in the database first call FrommTable(table)
function to specify which table to use, and then function Insert()
to start construction of SqlInsertQueryBuilder
Set(std::string_view columnName, ColumnValue const& value)
To select some elements from the Database you first need to specify which existing table you are going to use, for this use FromTable(table)
function, it returns you an instance of a SqlQueryBuilder
and then use Select()
function to continue constructing select query that described by SqlSelectQueryBuilder
interface. Here we present a compressed list of functions that can be used to create complete selection query.
Distinct()
Field()
Field("field")
Field(SqlQualifiedTableColumnName { "Table", "field" })
Fields()
Fields({"a", "b", "c"})
Fields({"a", "b", "c"}, "Table_B")
Field<TableType>()
. Note: can pass more than one typeOrderBy
GroupBy
SqlWhereClauseBuilder
Where
Where("a", 42)
specify simple condition that is equivalent to the sql query WHERE "a" = 42
Where(SqlQualifiedTableColumnName { .tableName = "Table_A", .columnName = "a" }, 42)
such call translated into WHERE "Table_A"."a" = 42
Or()
, And()
and Not()
logical functions to apply to the next callWhere("a",1).Or().Where("b",1)
Inner
|LeftOuter
|RightOuter
|FullOuter
+ Join
SqlJoinConditionBuilder
for detailsFirst()
All()