summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-selectcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/odbc-selectcommand.cpp')
-rw-r--r--libodbcpp/odbc-selectcommand.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/libodbcpp/odbc-selectcommand.cpp b/libodbcpp/odbc-selectcommand.cpp
index 191bb1e..d12fc55 100644
--- a/libodbcpp/odbc-selectcommand.cpp
+++ b/libodbcpp/odbc-selectcommand.cpp
@@ -1,11 +1,20 @@
#include "odbc-selectcommand.h"
+#include "column.h"
+#include "command.h"
+#include "error.h"
#include "odbc-column.h"
+#include "odbc-command.h"
#include "odbc-error.h"
-#include <boost/multi_index/ordered_index.hpp>
-#include <boost/multi_index_container.hpp>
-#include <cstring>
+#include "selectcommand.h"
+#include <array>
+#include <glibmm/ustring.h>
#include <numeric>
#include <sqlext.h>
+#include <utility>
+
+namespace ODBC {
+ class Connection;
+}
ODBC::SelectCommand::SelectCommand(const Connection & c, const std::string & s) :
DB::Command(s), ODBC::Command(c, s), DB::SelectCommand(s)