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