src/PreparedStatement.h
branchv_0
changeset 28 498d5d3406c3
parent 27 9441a517fa1f
child 29 b0ef1e1dc9c8
--- a/src/PreparedStatement.h	Wed Dec 25 01:07:41 2019 +0100
+++ b/src/PreparedStatement.h	Wed Dec 25 01:26:02 2019 +0100
@@ -16,38 +16,17 @@
  */
 #pragma once
 
-#include <memory>
-#include <string>
-#include <sstream>
-#include <regex>
-#include <vector>
-#include <locale>
-#include <codecvt>
-#include <unistd.h>
-#include <cassert>
-#include <sys/stat.h>
-
 #include <sqlite3.h>
 
 #include <relpipe/reader/typedefs.h>
 #include <relpipe/reader/TypeId.h>
-#include <relpipe/reader/handlers/RelationalReaderValueHandler.h>
-#include <relpipe/reader/handlers/AttributeMetadata.h>
-
-#include <relpipe/writer/Factory.h>
-
-#include "Configuration.h"
+#include <relpipe/writer/TypeId.h>
 #include "SqlException.h"
 
 namespace relpipe {
 namespace tr {
 namespace sql {
 
-using namespace std;
-using namespace relpipe;
-using namespace relpipe::reader;
-using namespace relpipe::reader::handlers;
-
 class PreparedStatement {
 private:
 	sqlite3_stmt* stmt;