JAVA JDBC Programming Question: Download JDBC PDF

How can you make the connection using JDBC?

Tweet Share WhatsApp

Answer:

In establishing a connection is to have the appropriate driver connect to the DBMS. The following line of code illustrates the general idea:

E.g.
String url = “jdbc:odbc:Fred”;
Connection con = DriverManager.getConnection(url, “Fernanda”, “J8”);

Download JDBC PDF Read All 19 JDBC Questions
Previous QuestionNext Question
What Class.forName will do while loading drivers of JDBC?How can you create JDBC statements?