From c0fa8c535ddb136f5488dd1028a02e8d1f1d4465 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 21 Nov 2011 12:31:17 +0200 Subject: Implement connection::execute() --- odb/mssql/connection.hxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'odb/mssql/connection.hxx') diff --git a/odb/mssql/connection.hxx b/odb/mssql/connection.hxx index fea9035..1a6cd24 100644 --- a/odb/mssql/connection.hxx +++ b/odb/mssql/connection.hxx @@ -127,6 +127,11 @@ namespace odb state_failed } state_; + // Statement handle for direct execution. It should be after the + // connection handle to be destroyed in the correct order. + // + auto_handle direct_stmt_; + //std::auto_ptr statement_cache_; }; } -- cgit v1.1