Skip to content

Commit

Permalink
Made connect string compatible with ODBC connect string
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Chapligin committed Feb 20, 2013
1 parent c942aac commit 27b3a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/db2/session.cpp
Expand Up @@ -44,7 +44,7 @@ void db2_session_backend::parseKeyVal(std::string const & keyVal) {
std::string key=keyVal.substr(0,delimiter);
std::string value=keyVal.substr(delimiter+1,keyVal.length());

if (!key.compare("Dsn")) {
if (!key.compare("DSN")) {
this->dsn=value;
}
if (!key.compare("Uid")) {
Expand Down

0 comments on commit 27b3a7b

Please sign in to comment.