added support for hex strings and binary strings

added FT::hexadecimal, FT::binary and FT::dont_use_utf8
This commit is contained in:
2021-05-11 22:11:31 +02:00
parent 2afe111c57
commit 009955a0fd
19 changed files with 744 additions and 515 deletions

View File

@@ -183,13 +183,13 @@ void DbExpression::put_name_value_separator()
void DbExpression::before_field_value_string()
void DbExpression::before_field_value_string(FT field_type)
{
(*out_stream) << "'";
}
void DbExpression::after_field_value_string()
void DbExpression::after_field_value_string(FT field_type)
{
(*out_stream) << "'";
}