mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-05-09 12:49:55 -05:00
Fixed bug in text results
text results never had a reasonable length
This commit is contained in:
@@ -116,7 +116,7 @@ namespace sqlpp
|
||||
{
|
||||
_is_valid = true;
|
||||
_value_ptr = data;
|
||||
_len = _value_ptr ? 0 : len;
|
||||
_len = _value_ptr ? len: 0;
|
||||
}
|
||||
|
||||
void validate()
|
||||
|
||||
Reference in New Issue
Block a user