devxlogo

Using MS Access Database Through JDBC:ODBC

You can easily connect to a MS Access database by using JDBC. First, you need to set up the data source for your MS Access database using the ODBCAdministrator. You can find the ODBC icon in the Control Panel. For example, say you have a database booklist.mdb, you set up a ODBC data source named DBbooklist for it. Then you can use these java code to access booklist.mdb in your java program.

 import java.sql.*;public class Showbooklist {  public static void main(String args[]) {    Connection con;    Statement stmt;    ResultSet rs;    try {      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");    } catch(java.lang.ClassNotFoundException e) {    System.err.print("ClassNotFoundException: ");    System.err.println(e.getMessage());    }    try {    con = DriverManager.getConnection("jdbc:odbc:DBbooklist","", "");    stmt = con.createStatement();    rs = stmt.executeQuery("select * from books");    int i=0;    while (rs.next()) {      String s = rs.getString("title");      float n = rs.getFloat("price");      i+=1;      System.out.println(i+"  "+s+"  "+n);    }    rs.close();    stmt.close();    con.close();    } catch(SQLException ex) {    System.err.println("SQLException: " + ex.getMessage());    }  }}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.