mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-04 12:10:43 -06: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