summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-dsn.h
blob: 0d335071740fabcfb4d733627b4891e48b4d526d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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