diff options
-rw-r--r-- | odb/mssql/query.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/mssql/query.hxx b/odb/mssql/query.hxx index 30b56be..636b7b6 100644 --- a/odb/mssql/query.hxx +++ b/odb/mssql/query.hxx @@ -1699,11 +1699,11 @@ namespace odb std::size_t size (0); value_traits<T, id_nstring>::set_image ( reinterpret_cast<ucs2_char*> (buf_.data ()), - buf_.capacity (), + buf_.capacity () / 2, size, is_null, v); - size_ind_ = static_cast<SQLLEN> (size); + size_ind_ = static_cast<SQLLEN> (size * 2); } private: |