From 5c202f042ebe1e264e33b92660d9dbcf630dca6c Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 13 Dec 2016 13:10:32 -0700 Subject: [PATCH] Add OracleGrammar WireBox mapping in ModuleConfig --- ModuleConfig.cfc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index b5c1eda2..b18f54ee 100644 --- a/ModuleConfig.cfc +++ b/ModuleConfig.cfc @@ -21,6 +21,10 @@ component { .to( "qb.models.Query.Grammars.MySQLGrammar" ) .asSingleton(); + binder.map( "OracleGrammar@qb" ) + .to( "qb.models.Query.Grammars.OracleGrammar" ) + .asSingleton(); + binder.map( "QueryUtils@qb" ) .to( "qb.models.Query.QueryUtils" ) .asSingleton();