SessionPoolContainer::get() fix

few documentation fixes
consolidated redundant MySQL connection params
This commit is contained in:
Aleksandar Fabijanic
2009-01-15 17:01:34 +00:00
parent b38f5ce99c
commit 363711ed39
4 changed files with 14 additions and 5 deletions

View File

@@ -69,7 +69,10 @@ Poco::SharedPtr<SQLExecutor> MySQLTest::_pExecutor = 0;
//
// Connection string to POCO
std::string MySQLTest::_dbConnString = "user=root;password=;db=test;compress=true;auto-reconnect=true";
std::string MySQLTest::_dbConnString = "user=" MYSQL_USER
";password=" MYSQL_PWD
";db=" MYSQL_DB
";compress=true;auto-reconnect=true";
MySQLTest::MySQLTest(const std::string& name):