Guides/Izenda-AdHoc-Driver.md
... ...
@@ -225,8 +225,8 @@ public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig //Izenda.AdHo
225 225
Izenda.Fusion.FusionDriver fusionDriver = new Izenda.Fusion.FusionDriver();
226 226
227 227
//Initialize the connections on the driver
228
- fusionDriver.AddConnection("SqlNW", Izenda.Fusion.FusionConnectionType.MsSql, @"http://url_to_sql_connector.com/provider_endpoint.aspx");
229
- fusionDriver.AddConnection("OrclNW", Izenda.Fusion.FusionConnectionType.Oracle, @"http://url_to_orcl_connector.com/provider_endpoint.aspx");
228
+ fusionDriver.AddConnection("SqlNW", Izenda.Fusion.FusionConnectionType.MsSql, @"YOUR_SQL_CONNECTION_STRING");
229
+ fusionDriver.AddConnection("OrclNW", Izenda.Fusion.FusionConnectionType.Oracle, @"YOUR_ORACLE_CONNECTION_STRING");
230 230
231 231
// Configure constraints for connections
232 232
fusionDriver.AddConstraint("SqlNW/Orders.OrderID", "SqlNW/*.OrderID");