summaryrefslogtreecommitdiff
path: root/libodbcpp/dsn.h
blob: ac4b6f5bbd9cc214280bbc6b3066afb57e6418f9 (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.h"

namespace ODBC {
	class DSN {
		public:
			DSN(String, String, String);
			virtual ~DSN();
			String     	dsn;            // DSN name for odbc.ini
			String     	username;       // User name
			String     	password;       // Password
	};
}

#endif