thanks Lew,
I will be installing this app in different machines, so need to know
whether we need to install any driver or the drver avaialble with
windows is sufficient?
Thanks,
Mahesh
Lew - 07 Mar 2007 14:50 GMT
> thanks Lew,
> I will be installing this app in different machines, so need to know
> whether we need to install any driver or the drver avaialble with
> windows is sufficient?
Oracle's JDBC drivers are written in Java. Since JDBC is used from Java only,
it is safe to assume that there will be Java available on any machine where
you use JDBC. It is like any other JAR in the application's classpath that way.
-- Lew
Chris Uppal - 07 Mar 2007 15:24 GMT
> I will be installing this app in different machines, so need to know
> whether we need to install any driver or the drver avaialble with
> windows is sufficient?
Windows doesn't come with any kind of driver for Oracle (unless there's
something new in Vista). So whether you use the Oracle JDBC driver or the
Oracle ODBC driver, you'll have to install /something/ on the users' machines.
And the JDBC<->ODBC bridge which comes with Java is not intended for production
use, so the chances are that the Oracle JDBC driver will work best.
-- chris
Arne Vajhøj - 13 Mar 2007 02:41 GMT
> I will be installing this app in different machines, so need to know
> whether we need to install any driver or the drver avaialble with
> windows is sufficient?
Actually Oracle comes with 2 JDBC drivers.
The OCI requires Oracle Client installed on the system.
The thin does not require anything installed on the system.
I will strongly recommend the thin JDBC driver.
The jar in classpath, load the driver, use the
correct connection URL and you are going.
Arne