diff options
Diffstat (limited to 'libmysqlpp/my-column.cpp')
-rw-r--r-- | libmysqlpp/my-column.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqlpp/my-column.cpp b/libmysqlpp/my-column.cpp index 14c0a58..c5521c7 100644 --- a/libmysqlpp/my-column.cpp +++ b/libmysqlpp/my-column.cpp @@ -39,7 +39,7 @@ MySQL::StringColumn::apply(DB::HandleField & h) const h.null(); } else { - h.string(value, length); + h.string({ value, length }); } } |