diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 10:25:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 10:25:47 +0200 |
commit | dbab9261ce98d1f30e712507023e60bab007787b (patch) | |
tree | e32c0448485908af94aebedfb46460b15d2e25ab /odb/mssql/connection.cxx | |
parent | 984673f60f35f8e6f9a51afeaa8d66bd91e61f34 (diff) |
Rename long_buffer to long_data_buffer
Diffstat (limited to 'odb/mssql/connection.cxx')
-rw-r--r-- | odb/mssql/connection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/mssql/connection.cxx b/odb/mssql/connection.cxx index 401d701..19fb0d1 100644 --- a/odb/mssql/connection.cxx +++ b/odb/mssql/connection.cxx @@ -25,7 +25,7 @@ namespace odb db_ (db), state_ (state_disconnected), statement_cache_ (new statement_cache_type (*this)), - long_buffer_ (0) + long_data_buffer_ (0) { SQLRETURN r; @@ -95,7 +95,7 @@ namespace odb handle_ (handle), state_ (state_connected), statement_cache_ (new statement_cache_type (*this)), - long_buffer_ (0) + long_data_buffer_ (0) { } |