Revision: 657
Author: carlobar
Date: 2006-03-23 00:34:36 -0800 (Thu, 23 Mar 2006)
ViewCVS: http://svn.sourceforge.net/instantobjects?rev=657&view=rev
Log Message:
-----------
Added DbExpress Corelab Oracle Net driver support
Modified Paths:
--------------
trunk/Source/Brokers/DBX/InstantDBX.pas
Modified: trunk/Source/Brokers/DBX/InstantDBX.pas
===================================================================
--- trunk/Source/Brokers/DBX/InstantDBX.pas 2006-03-23 00:44:47 UTC (rev 656)
+++ trunk/Source/Brokers/DBX/InstantDBX.pas 2006-03-23 08:34:36 UTC (rev 657)
@@ -240,6 +240,8 @@
Result := TInstantDBXOracleBroker.Create(Self)
else if SameText(Connection.DriverName, 'Oracle (Core Lab)') then //For CoreLab driver
Result := TInstantDBXOracleBroker.Create(Self)
+ else if SameText(Connection.DriverName, 'Oracle Net (Core Lab)') then //For CoreLab driver
+ Result := TInstantDBXOracleBroker.Create(Self)
else if SameText(Connection.DriverName, 'DB2') then
Result := TInstantDBXDB2Broker.Create(Self)
else if SameText(Connection.DriverName, 'MySQL') then
|