summaryrefslogtreecommitdiff
path: root/modules/extra/sql.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-09-25 04:19:15 -0400
committerAdam <Adam@anope.org>2011-09-25 04:19:15 -0400
commit1f2399de364c09adcce4193895cd362d80ffdfc5 (patch)
tree5f40fc531f22c174b6e10bb7bc12842a4a21d30b /modules/extra/sql.h
parent43201ead9575a74e350710bc191f4ac67366aca7 (diff)
Added a new database format and sqlite support. Also moved db-convert to a module.
Diffstat (limited to 'modules/extra/sql.h')
-rw-r--r--modules/extra/sql.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/extra/sql.h b/modules/extra/sql.h
index 2487b2305..85b3c291a 100644
--- a/modules/extra/sql.h
+++ b/modules/extra/sql.h
@@ -116,5 +116,7 @@ class SQLProvider : public Service<Base>
virtual void Run(SQLInterface *i, const SQLQuery &query) = 0;
virtual SQLResult RunQuery(const SQLQuery &query) = 0;
+
+ virtual SQLQuery CreateTable(const Anope::string &table, const SerializableBase::serialized_data &data) = 0;
};