>데이터 베이스 >MySQL 튜토리얼 >JAVA访问Access数据库

JAVA访问Access数据库

WBOY
WBOY원래의
2016-06-07 15:36:511146검색

/** * JAVA访问Access数据库 * 因为没有像访问其它数据库的驱动程序 * 所以只能够通过ODBC的形式访问 * 示例表:create table user(id int,name char(50),age int),id为自增型 */ import java.sql.*; public class Access_Conn { public Connection getConn

 /**
 * JAVA访问Access数据库
 * 因为没有像访问其它数据库的驱动程序
 * 所以只能够通过ODBC的形式访问
 * 示例表:create table user(id int,name char(50),age int),id为自增型
 */
import java.sql.*;
public class Access_Conn {

 public Connection getConn() {
  //test为配置的数据源名
  String url = "jdbc:odbc:test";
  Connection con = null;
  try {
   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
   con = DriverManager.getConnection(url, "", "");
  } catch (Exception e) {
   e.printStackTrace();
  }
  return con;
 }
 public static void main(String[] arg)
 {
  Access_Conn con=new Access_Conn();
  Connection conn=con.getConn();
  try {
   Statement st=conn.createStatement();
   st.execute("insert into user(name,age) values('test',20)");
   ResultSet rs=st.executeQuery("select * from user");
   while(rs.next())
   {
    System.out.println(rs.getInt(1)+"  "+rs.getString(2)+"  "+rs.getInt(3));
   }
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  finally{
   try {
    if(conn!=null)
     conn.close();
   } catch (SQLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }
  
 }
}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.