Question:
what is JDBC, ODBC in Java. Give full forms and some detail is requested.?
anonymous
2008-10-10 00:26:29 UTC
what is JDBC, ODBC in Java. Give full forms and some detail is requested.?
Eight answers:
thekid
2008-10-10 01:23:35 UTC
JDBC stands for Java Database Connectivity

ODBC stands for Open Database Connectivity



Both are APIs used to connect to databases from application in a vendor independent manner. The only difference is that JDBC is only for Java, ODBC is for C, VB .Net etc.
anonymous
2015-08-06 19:49:38 UTC
This Site Might Help You.



RE:

what is JDBC, ODBC in Java. Give full forms and some detail is requested.?
ƒōŕśāĸęń
2008-10-10 00:30:53 UTC
I know the full form

JDBC - Java Database Connectivity

ODBC - Open Database Connectivity



Its some type of connectivity which helps java the interact with database such as Oracle..
Badsha
2008-10-10 03:02:51 UTC
JDBC stands for java database connectivity.

It is used for connecting with the database. Its an API (application programming interface) which helps you to interact with the database.



ODBC stands for open database connectivity. this is also an API and the features are obviously different from JDBC but the concept is similar to JDBC...
Satish
2015-02-19 02:54:03 UTC
JDBC is not actual abbreviation for java database connectivity ......
?
2016-12-13 10:04:53 UTC
What Does Odbc Stand For
anonymous
2016-03-17 07:45:34 UTC
public static Connection getConnection() { if(con==null) { try { String driver = "com.mysql.jdbc.Driver"; String myUrl = "jdbc:mysql://localhost:3306/dbName"; String myUser = "root"; String myPass = ""; Class.forName(driver); Connection con = DriverManager.getConnection(myUrl,myUser... System.out.println("New database connection...."); } catch(Exception e) { e.printStackTrace(); } } else { System.out.println("Old connection from cache..."); } return con; }
?
2016-10-07 09:44:14 UTC
What Is Jdbc


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...