|
IronQuery
A SQL-first query builder for C++
|
A collation name for use with Expr::Collate. More...
#include <collation.hpp>
Public Member Functions | |
| std::string | ToString () const |
| Renders the collation name as SQL text. | |
Static Public Member Functions | |
| static Collation | FromRaw (std::string name) |
| Wraps a trusted, developer-written collation name verbatim. Never pass untrusted/dynamic data here. | |
| static Collation | Default () |
| The database's default collation. | |
| static Collation | C () |
The C collation: byte-order comparison. | |
| static Collation | Posix () |
The POSIX collation, identical to C on PostgreSQL. | |
A collation name for use with Expr::Collate.
|
static |
Wraps a trusted, developer-written collation name verbatim. Never pass untrusted/dynamic data here.
name is a real collation known to the database.