File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1919* Github: https://github.com/mikecovlee
2020*/
2121#include < sqlite/sqlite.hpp>
22- #include < covscript/extension.hpp>
2322#include < covscript/cni.hpp>
23+ #include < covscript/extension.hpp>
24+ #include < covscript/extensions/char.hpp>
2425#include < covscript/extensions/string.hpp>
26+ #include < covscript/extensions/exception.hpp>
2527
2628static cs::extension sqlite_ext;
2729static cs::extension sqlite_stmt_ext;
@@ -151,7 +153,9 @@ namespace sqlite_cs_ext {
151153
152154 void init ()
153155 {
156+ char_cs_ext::init ();
154157 string_cs_ext::init ();
158+ except_cs_ext::init ();
155159 sqlite_ext.add_var (" statement" , var::make_protect<extension_t >(sqlite_stmt_ext_shared));
156160 sqlite_ext.add_var (" integer" , var::make_constant<sqlite::data_type>(sqlite::data_type::integer));
157161 sqlite_ext.add_var (" real" , var::make_constant<sqlite::data_type>(sqlite::data_type::real));
You can’t perform that action at this time.
0 commit comments