From 50255cefbe9585bbe50d17bd89758132f56df7dc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 18 Nov 2011 14:55:17 +0200 Subject: Fix mssql::database constructor call --- libcommon/common/common.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcommon/common/common.cxx b/libcommon/common/common.cxx index 28fd24a..66a629f 100644 --- a/libcommon/common/common.cxx +++ b/libcommon/common/common.cxx @@ -136,7 +136,7 @@ create_database (int& argc, if (max_connections != 0) f.reset (new mssql::connection_pool_factory (max_connections)); - db.reset (new mssql::database (argc, argv, false, 0, f)); + db.reset (new mssql::database (argc, argv, false, "", 0, f)); #endif return db; -- cgit v1.1