aboutsummaryrefslogtreecommitdiff
path: root/libcommon
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-18 14:55:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:45:45 +0200
commit50255cefbe9585bbe50d17bd89758132f56df7dc (patch)
treec656866a5b4f611d85bf3a4e85367fc6ee4767e1 /libcommon
parent04201d013c2a43d27987122e0118236d74154d77 (diff)
Fix mssql::database constructor call
Diffstat (limited to 'libcommon')
-rw-r--r--libcommon/common/common.cxx2
1 files changed, 1 insertions, 1 deletions
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;