blob: 6be7e3bea0b5c5a3526517f73412f6c73f48019c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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
|