MySQL
com.mysql.jdbc.Driver
SQLServer
com.microsoft.sqlserver.jdbc.SQLServerDriver
Oracle
oracle.jdbc.OracleDriver
Sqlite
org.sqlite.JDBC
ODBC
sun.jdbc.odbc.JdbcOdbcDriver
连接数据库:
(1)加载驱动
(2)创建连接
(3)执行数据库操作,如查询,修改,删除,添加
(4)关闭数据库
jdbc:mysql://主机名:端口号/数据库名?参数列表
MySQL为例:
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/数据库名?characterEncoding=UTF-8";
String username="root";
String password="password";
Class.forName(driver);
Connection conn=DriverManager.getConnection(url,username,password);
com.mysql.jdbc.Driver
SQLServer
com.microsoft.sqlserver.jdbc.SQLServerDriver
Oracle
oracle.jdbc.OracleDriver
Sqlite
org.sqlite.JDBC
ODBC
sun.jdbc.odbc.JdbcOdbcDriver
连接数据库:
(1)加载驱动
(2)创建连接
(3)执行数据库操作,如查询,修改,删除,添加
(4)关闭数据库
jdbc:mysql://主机名:端口号/数据库名?参数列表
MySQL为例:
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/数据库名?characterEncoding=UTF-8";
String username="root";
String password="password";
Class.forName(driver);
Connection conn=DriverManager.getConnection(url,username,password);