Tagged Questions

6
votes
6answers
229 views

What purpose does Class.forName() serve if you don’t use the return value?

I've seen this line in a sample application for using a commercial JDBC driver: Class.forName("name.of.a.jcdb.driver") The return value is not used. What purpose does this line …
5
votes
3answers
496 views

How to use a JDBC driver from an arbitrary location

I need to test a JDBC connection to a database. The java code to do that should be as simple as: DriverManager.getConnection("jdbc connection URL", "username", "password"); The …
4
votes
5answers
247 views

how to execute .sql script file using JDBC

Hi, I have a sql script file which contains 40-50 sql statements. I am wondering whether it is possible to run this script file using JDBC. Thanks Shafi
4
votes
1answer
301 views

Is there an alternative to using sun.jdbc.odbc.JdbcOdbcDriver ?

I recently migrated an older application we have at work from Java 1.5 to 1.6. I noticed that during the build, I now get a (new) compiler warning: ... DatabaseSession.java:[9, …
3
votes
1answer
356 views

How to Make JDBC Driver Work in Java 5 & 6?

Java 6 comes with JDBC 4, which is not backward compatible with JDBC shipped with previous versions of Java. We have a JDBC driver which must support both Java 5 and Java 6. If I …
3
votes
2answers
410 views

oracle jdbc driver version madness

Why the heck does Oracle offer a different(!) version of the JDBC driver, e.g. ojdbc14.jar, for every(!) database version? The files all have different sizes and thus probably diff …
3
votes
2answers
299 views

JDBC java drivers sql server 2005

We are upgrading our servers to SQL Server 2005 from SQL Server 2000. We currently use the jtds drivers. I'm interested to know what peoples opinions are of the different jdbc dri …
2
votes
4answers
601 views

How to make Java work with SQL Server?

I know this is a basic question, but I can't seem to find an answer and I apologize, if this question is way too stupid, but here we go: I am supposed to work with SQL Server (no …
2
votes
2answers
161 views

SQL Server JBDC Driver comparison

Currently we use jtds for connecting to our SQL Server databases. I've always taken it for granted that we use it due to performance and reliability reasons, however, it's usage pr …
2
votes
4answers
646 views

Pattern for connecting to different databases using JDBC

I'm writing an application which has to be configurable to connect to Oracle, SQL Server and MySQL depending on client whim. Up till now I'd been planning on using the JDBC-ODBC b …
1
vote
3answers
89 views

Recommendation for JDBC SQL client tool

Can someone recommend a good, open source, standalone developer tool for querying SQL databases using JDBC and exporting the results to a file? I know a lot of database vendors pro …
1
vote
3answers
179 views

ClassNotFoundException com.mysql.jdbc.Driver

This question might have asked here number of times . After doing some google search for the above error and doing some update, I can't understand why I'm still getting that error. …
1
vote
4answers
107 views

Oracle ResultSetMetaData getPrecision/getScale

I'm using Oracle's JDBC thin driver (10.2.0.3) for connecting to an Oracle 10g database. I'd like to get information about the database columns, so I use ResultSetMetaData. The mos …
1
vote
1answer
416 views

can oci driver for 11g (odbc5.jar) work with 10g client ?

Hi, I need to connect to Oracle9,10 and 11 in my java application.The client will always be present where the app will be run and I want the app to just work with username,passwor …
1
vote
2answers
73 views

JDBC Thin Connection

Hi All, I have installed NetBeans 6.5 with JDK1.6. And I want to connect between oracle with java in NetBeans 6.5. The question is: How do I configure JDBC to java 1.6? Thanks, …

1 2 3 next
15 30 50 per page