SQT
A C++ ORM framework for SQLite
Loading...
Searching...
No Matches
Concepts
Here is a list of all documented concepts with brief descriptions:
[detail level 12]
 Nsqt
 RAssignmentTypeConstrains a type to be an assignment type, which associates an identifier with a value
 RBinderTupleTypeConstrains a type to be a std::tuple whose elements all satisfy the sqt::BinderType concept
 RBinderTypeConstrains a type to be a binder type, which provides information for binding values to a placeholder of an executor
 RIdentifierBinderTupleTypeConstrains a type to be a std::tuple whose elements all satisfy the sqt::IdentifierBinderType concept
 RIdentifierBinderTypeConstrains a type to be a binder type that associated with an identifier type
 RExpressionLikeConstrains a type to be an expression-like type
 REntityValueOperandTypeConstrains a type to be a value operand type whose value type is an entity
 RIdentifierOperandTypeConstrains a type to be an identifier operand type
 ROperandTypeConstrains a type to be an operand type
 RValueOperandTypeConstrains a type to be a value operand type
 ROrderingTermTypeConstrains a type to be an ordering term type, which is used in the ORDER BY clause
 RPredicateTermTypeConstrains a type to be a predicate term type
 RPredicateTypeConstrains a type to be a predicate type
 RBindableQuerierTypeConstrains a type to be an querier type, which has bindable placeholders
 RQuerierTypeConstrains a type to be a querier type, which corresponds to a SQL statement that can be executed
 RSelecterTypeConstrains a type to be a selecter type, which corresponds to a SELECT SQL statement that can be executed
 RColumnTypeConstrains a type to be a column type
 RCompositeColumnTypeConstrains a type to be a composite column type
 RValueSourceTypeConstrains a type to be a value source type, which is used to retrieve and set values from and to entities
 RIdentifierTypeConstrains a type to be an identifier type, which is a column type, primary key type or index type
 REntityValueTraitsTypeConstrains a type to be an entity value traits type, which defines traits for an entity value type
 REntityValueTypeConstrains a type to be an entity value type, which can be mapped to a table type
 RPrimaryKeyEntityValueTypeConstrains a type to be an entity value type that has a primary key
 RAutoIncEntityValueTypeConstrains a type to be an entity value type that has an auto-increment primary key
 RIdentifierValueTraitsTypeConstrains a type to be an identifier value traits type, which associates a column, primary key, or index with its corresponding value traits type
 RBasicValueTraitsTypeConstrains a type to be a basic value traits type, which defines traits for a basic value type
 RBasicValueTypeConstrains a type to be a basic value type, which can be used as the value type of fields or accessors bound to database columns
 RCustomValueTypeConstrains a type to be a custom value type, which is provided by the user
 RNullableValueTypeConstrains a type to be a nullable primitive value type
 RPrimitiveValueTypeConstrains a type to be a primitive value type, which refers to a built-in type that can be directly mapped to a database data type
 RCompositeValueTraitsTypeConstrains a type to be a composite value traits type, which defines traits for a composite value type
 RCompositeValueTypeConstrains a type to be a composite value type, which is a std::tuple<> of basic value types
 RValueTraitsTypeConstrains a type to be a value traits type, which is used to interact with its corresponding value type