diff options
author | Ralph Amissah <ralph@amissah.com> | 2018-04-14 16:39:52 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 479e71e90146b1067120faf489af1b13a5a0cf3d (patch) | |
tree | 5e725994ae345dd89687fae2fe90979eb3cf6f8d /org/output_hub.org | |
parent | 0.26.0 sqlite single statement insertion of objects (diff) |
sqlite3 some stuff & rearrange files, dlang, org
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index 0221652..6d62477 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -34,7 +34,7 @@ template outputHub() { } template outputHubOp() { <<output_imports>> - void outputHubOp(O)(O opt_action) { + void outputHubOp(E,O)(E env, O opt_action) { mixin SiSUoutputRgxInit; static auto rgx = Rgx(); <<output_options_op>> @@ -227,7 +227,7 @@ if ((opt_action.sqlite_create)) { if ((opt_action.verbose)) { writeln("sqlite create table... "); } - SQLiteTablesCreate!()(); + SQLiteTablesCreate!()(env, opt_action); } if ((opt_action.sqlite_drop)) { if ((opt_action.verbose)) { |