Skip to content

Instantly share code, notes, and snippets.

@cofearabi
Last active December 11, 2015 15:38
Show Gist options
  • Save cofearabi/4621902 to your computer and use it in GitHub Desktop.
Save cofearabi/4621902 to your computer and use it in GitHub Desktop.
(Java) connect to a access mdb database without dsn
import java.sql.*;
public class password {
public static void main(String[] args) {
try{
//
//Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
//
// Connection con=DriverManager.getConnection("jdbc:odbc:passwd");
// Connection con= setupConnection();
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +
"DBQ=c:\\mdb\\passwd.MDB");
//
Statement stmt = con.createStatement();
//
String sql = "SELECT * FROM password";
//
ResultSet rs = stmt.executeQuery(sql);
//
while(rs.next()){
//
int uniq_id = rs.getInt("uniq_id");
//
String keyword = rs.getString("keyword");
//
String password = rs.getString("password");
//
String date = rs.getString("date");
//
System.out.println(uniq_id + " " + keyword + " " + password + " " + date);
}
stmt.close();
con.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment