目录
一、示例代码
以下为公共代码,不同的数据库在连接的时候,只需要修改对应的数据库的驱动、连接地址、用户名、密码即可,下面将列出各种常见的数据库的驱动与连接地址。
String driverClass = "驱动串";
String url = "连接串"
String user = "用户名";
String password = "密码";
Connection conn;
try{
Class.forName(driverClass).newInstance();
conn = DriverManager.getConnection(url,user,password);
Statement stmt = conn.createStatement();
String sql = "select * from tableName";
ResultSet rs = stmt.execute(sql);
where (rs.next()){
}
} catch(Exception ex){
ex.printStackTrace();
}
二、常见驱动与连接
达梦
String driverClass = "dm.jdbc.driver.DmDriver";
String url = "jdbc:dm://localhost:5236";
MySQL:
String driverClass = "com.mysql.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/db;"
Microsoft SQL Server 2.0驱动(3个jar的那个):
String Driver="com.microsoft.jdbc.sqlserver.SQLServerDriver";
String URL="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db_name";
Microsoft SQL Server 3.0驱动(1个jar的那个)
String Driver="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String URL="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db_name";
Sysbase:
String Driver="com.sybase.jdbc.SybDriver";
String URL="jdbc:Sysbase://localhost:5007/db_name";
Oracle(用thin模式):
String Driver="oracle.jdbc.driver.OracleDriver";
String URL="jdbc:oracle:thin:@loaclhost:1521:orcl"; //orcl为数据库的SID
PostgreSQL:
String Driver="org.postgresql.Driver";
String URL="jdbc:postgresql://localhost/db_name"; //db_name为数据可名
DB2:
String Driver="com.ibm.db2.jdbc.app.DB2.Driver"; //连接具有DB2客户端的Provider实例
String Driver="com.ibm.db2.jdbc.net.DB2.Driver"; //连接不具有DB2客户端的Provider实例
String URL="jdbc:db2://localhost:5000/db_name"; //db_name为数据可名
Informix:
String Driver="com.informix.jdbc.IfxDriver";
String URL="jdbc:Informix-//sqli://localhost:1533/db_name:INFORMIXSER=myserver";//db_name为数据可名
JDBC-ODBC:
String Driver="sun.jdbc.odbc.JdbcOdbcDriver";
String URL="jdbc:odbc:dbsource"; //dbsource为数据源名