query builder progress
This commit is contained in:
@@ -51,14 +51,18 @@ public:
|
||||
: data_type(utils::data_type_traits<Type>::type(size), size) {}
|
||||
};
|
||||
|
||||
using TinyInt = typed_data_type<int8_t>;
|
||||
using SmallInt = typed_data_type<int16_t>;
|
||||
using Integer = typed_data_type<int32_t>;
|
||||
using BigInt = typed_data_type<int64_t>;
|
||||
using Integer = typed_data_type<int64_t>;
|
||||
|
||||
using Real = typed_data_type<float>;
|
||||
using Double_ = typed_data_type<double>;
|
||||
using String = typed_data_type<std::string>;
|
||||
using Double = typed_data_type<double>;
|
||||
|
||||
using Text = typed_data_type<std::string>;
|
||||
using Boolean = typed_data_type<bool>;
|
||||
using Varchar = sized_typed_data_type<std::string>;
|
||||
|
||||
using Blob = sized_typed_data_type<std::vector<std::byte>>;
|
||||
|
||||
class constraint {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user