diff options
Diffstat (limited to 'libodbcpp/odbc-dsn.cpp')
-rw-r--r-- | libodbcpp/odbc-dsn.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libodbcpp/odbc-dsn.cpp b/libodbcpp/odbc-dsn.cpp new file mode 100644 index 0000000..766b0ac --- /dev/null +++ b/libodbcpp/odbc-dsn.cpp @@ -0,0 +1,13 @@ +#include "odbc-dsn.h" + +ODBC::DSN::DSN(const std::string & d, const std::string & u, const std::string & p) : + dsn(d), + username(u), + password(p) +{ +} + +ODBC::DSN::~DSN() +{ +} + |