summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-selectcommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/odbc-selectcommand.h')
-rw-r--r--libodbcpp/odbc-selectcommand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libodbcpp/odbc-selectcommand.h b/libodbcpp/odbc-selectcommand.h
index 2d4311a..1c71d57 100644
--- a/libodbcpp/odbc-selectcommand.h
+++ b/libodbcpp/odbc-selectcommand.h
@@ -15,6 +15,9 @@ namespace ODBC {
private:
bool fetch(SQLSMALLINT orientation = SQL_FETCH_NEXT, SQLLEN offset = 0);
+ typedef std::shared_ptr<Column> ColumnPtr;
+ typedef std::set<ColumnPtr> Columns;
+ Columns largeColumns;
};
}