summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-dsn.h
blob: 4568cb6378a70d1d3070a6ddfc0f7e0f883b96fb (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(std::string, std::string, std::string);
			virtual ~DSN() = default;
			const std::string	dsn;            // DSN name for odbc.ini
			const std::string	username;       // User name
			const std::string	password;       // Password
	};
}

#endif