Using MS Access Database Through JDBC:ODBC

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());    }  }}
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several