aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/error.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-17 08:44:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-17 08:44:01 +0200
commit00d972abb9dcbe7c99cd9b94cefc725024cfb4bc (patch)
tree95ad5e69205d4222f9ab34ca041fcfa78cc9b997 /odb/mssql/error.hxx
parentbc85d6a1c8d5296428c121cd1b51d470d5c0e963 (diff)
Add initial database class implementation
Diffstat (limited to 'odb/mssql/error.hxx')
-rw-r--r--odb/mssql/error.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/mssql/error.hxx b/odb/mssql/error.hxx
index 2cbea5c..35906b7 100644
--- a/odb/mssql/error.hxx
+++ b/odb/mssql/error.hxx
@@ -10,7 +10,7 @@
#include <odb/mssql/version.hxx>
#include <odb/mssql/forward.hxx> // connection
-#include <odb/mssql/auto-handle.hxx>
+#include <odb/mssql/mssql-fwd.hxx>
#include <odb/mssql/details/export.hxx>
namespace odb
@@ -18,10 +18,10 @@ namespace odb
namespace mssql
{
LIBODB_MSSQL_EXPORT void
- translate_error (const auto_handle<SQL_HANDLE_ENV>&);
+ translate_error (connection&);
LIBODB_MSSQL_EXPORT void
- translate_error (connection&);
+ translate_error (SQLHANDLE, SQLSMALLINT htype);
}
}