|
relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
|
Literals namespace for SQL value literals. More...
Functions | |
| auto | operator""_sql (unsigned long long value) |
| Automatic conversion from literal integers to Value expressions. | |
| auto | operator""_sql (long double value) |
| Automatic conversion from literal floating point numbers to Value expressions. | |
| auto | operator""_sql (const char *str, std::size_t len) |
| Automatic conversion from literal strings to Value expressions. | |
Literals namespace for SQL value literals.
|
inline |
Automatic conversion from literal strings to Value expressions.
| str | The string literal |
| len | The length of the string |
Definition at line 29 of file literals.hpp.
|
inline |
Automatic conversion from literal floating point numbers to Value expressions.
| value | The floating point literal |
Definition at line 21 of file literals.hpp.
|
inline |
Automatic conversion from literal integers to Value expressions.
| value | The integer literal |
Definition at line 14 of file literals.hpp.