| Author |
Any alternative to JDBC???
|
Nilesh Srivastava
Ranch Hand
Joined: Aug 29, 2003
Posts: 70
|
|
Hi all, My question is : If I want to connect the database to my Java application/jsp frontend , what r other ways to connect to Oracle/any other databse without using JDBC. Thanks Nilesh
|
 |
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
|
|
|
If JDBC is not an option, you're left with native drivers in which case we're most probably talking about ODBC. Again, if JDBC-ODBC bridge isn't an option, the only way is to use the native driver is through JNI.
|
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
|
 |
SJ Adnams
Ranch Hand
Joined: Sep 28, 2001
Posts: 925
|
|
there is SQLJ but that compiles into jdbc anyway. There is of course plenty of other solutions that act as a layer between your app & jdbc (JDO, CMP for example). maybe explain why you don't want to use jdbc?
|
 |
 |
|
|
subject: Any alternative to JDBC???
|
|
|