Free jdbc drivers

Hello,I'm looking for some jdbc free drivers to be able to connect to mssql server, oracle, text files( comma separated ), access files and more...Anybody can help me?Many Thanks
[214 byte] By [liviuvoicu] at [2007-9-26 16:51:24]
# 1
http://industry.java.sun.com/products/jdbc/driversps there is free and there is works reliably and well and these are not always compatible.
Guest at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
The jdbc-odbc bridge has come with every version of the Sun jdk since at least 1.1.4. And it does everything you asked for.
jschell at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
How it can help me?Because i want to write code in "general mode" that will run under Linux too so i can't use odbc bridge:(Liviu
liviuvoicu at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 4

>...that will run under Linux too so i can't use odbc bridge

You are saying the bridge doesn't exist in linux?

Or you are saying that you can't set up ODBC in linux - which is an entirely seperate problem from java?

The Microsoft site has a MS SQL type 4 driver which I believe is free - but read the license. You can search this forum for a direct link.

The Oracle (OTN) site has the Oracle thin driver (type 4) which you can download. Again you must read the license to determine the actual usage that you are permitted.

I don't know of any text file drivers.

jschell at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 5
Hold a sec:Under linux exists odbc bridge like under windows?If so please, can you explaind how can i use it?Many thanks
liviuvoicu at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 6

>Under linux exists odbc bridge like under windows?

>If so please, can you explaind how can i use it?

I presume it exists. It certainly exists in Solaris.

The first step is that you install ODBC. Unlike windows it isn't necessarily installed.

Then you have to find ODBC drivers. Oracle ones exist. I am pretty sure MS SQL Server ones do not. You can probably find some very good ones for text files.

jschell at 2007-7-2 20:50:16 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...