Last active
December 11, 2015 15:38
-
-
Save cofearabi/4621902 to your computer and use it in GitHub Desktop.
(Java) connect to a access mdb database without dsn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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