diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
commit | 63d9cbb434ec4f6e828083b99d638127cfce7a95 (patch) | |
tree | 2dfcf95372467a9119147265fccfba058c617b8a /libodbcpp/dsn.h | |
parent | Use parent glibmm (diff) | |
download | libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.bz2 libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.xz libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.zip |
ODBC files prefixed with odbc-
Diffstat (limited to 'libodbcpp/dsn.h')
-rw-r--r-- | libodbcpp/dsn.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libodbcpp/dsn.h b/libodbcpp/dsn.h deleted file mode 100644 index 6be7e3b..0000000 --- a/libodbcpp/dsn.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DSN_H -#define DSN_H - -#include <string> - -namespace ODBC { - class DSN { - public: - DSN(const std::string &, const std::string &, const std::string &); - virtual ~DSN(); - const std::string dsn; // DSN name for odbc.ini - const std::string username; // User name - const std::string password; // Password - }; -} - -#endif - |