summaryrefslogtreecommitdiff
path: root/libodbcpp/selectcommand.h
blob: 5a00739b91a094de38f8a79d5a887a25b88f09ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef ODBC_SELECTCOMMAND_H
#define ODBC_SELECTCOMMAND_H

#include "command.h"

namespace ODBC {
	class Column;
	class SelectCommand : public Command {
			typedef std::vector<Column*> Columns;
		public:
			SelectCommand (const Connection&, String sql);
			~SelectCommand();
			bool				fetch();
			const Column &		operator[](unsigned int col) const;
			const Column &		operator[](const String &) const;
			unsigned int		columnCount() const;
			unsigned int		getOrdinal(const String &) const;
		private:
			void				execute();
			Columns				columns;			
	};
}

#endif