1.首先去下载mysql odbc的软件包,我这里是windows64位的,mysqlodbc5.1
2.首先看一下我的数据库:libo_shopping下有一张表:y_user
3.第一步的程序安装好之后,去控制面板===》数据源
4.上代码:
//导入java.sql包
import java.sql.*;
public class OdbcTest {
public static void main(String[] args) {
//创建驱动名称,这里我们使用的是odbc
String driverName="sun.jdbc.odbc.JdbcOdbcDriver";
//创建odbc的名字
String odbcName="jdbc:odbc:mysql";
//用户名
String userName="root";
//密码
String password="root";
//创建一个连接对象
Connection conn=null;
//sql语句执行对象
Statement st=null;
//结果集对象
ResultSet rs=null;
String sql="select * from libo_shopping.y_user";
//1.加载启动程序
try {
Class.forName(driverName);
conn=DriverManager.getConnection(odbcName, userName, password);
System.out.println("连接成功!!");
st=conn.createStatement();
rs=st.executeQuery(sql);
System.out.println("id\t登录名");
while(rs.next()){
System.out.println("id:"+rs.getInt(1)+"\t"+rs.getString(2));
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
if(rs!=null){
rs.close();
}
if(st!=null){
st.close();
}
if(conn!=null){
conn.close();
}
System.out.println("关闭成功!!");
} catch (SQLException e) {
e.printStackTrace();
}
}
}