java.sql.SQLException: [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序 代码
importjava.sql.*;publicclassListDB{publicstaticvoidmain(String[]args){StringdbURL="jd...
import java.sql.*;
public class ListDB {
public static void main(String[] args) {
String dbURL="jdbc:odbc:driver{Microsoft Access Driver(*.mdb)};DBQ=e:\\Access\\sample.mdb";
String user="admin";
String password="admin";
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}catch(ClassNotFoundException e1){
System.out.println(e1.toString());
}
try{
//建立数据库连接
Connection con=DriverManager.getConnection(dbURL,user,password);
//建立SQL语句执行对象
Statement st=con.createStatement();
String id,name;
int age;
String qurey="select*from table1";//定义SQL语句
ResultSet rs=st.executeQuery(qurey);//执行SQL语句
//处理查询结果,将表中所有记录输出
System.out.print("学号"+"\t"+"姓名"+"\t"+"年龄"+"\n");
while(rs.next()){
id=rs.getString("ID");//读取“学号”字段,存入变量id
name=rs.getString("NAME");//读取“姓名”字段,存入变量name
age=rs.getInt("AGE");//读取“年龄”字段,存入变量age
//输出一条记录信息
System.out.print(id+"\t"+name+"\t"+age+"\n");
}
rs.close();
st.close();
con.close();
}catch(SQLException e2){
System.out.println(e2.toString());
}
}
} 展开
public class ListDB {
public static void main(String[] args) {
String dbURL="jdbc:odbc:driver{Microsoft Access Driver(*.mdb)};DBQ=e:\\Access\\sample.mdb";
String user="admin";
String password="admin";
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}catch(ClassNotFoundException e1){
System.out.println(e1.toString());
}
try{
//建立数据库连接
Connection con=DriverManager.getConnection(dbURL,user,password);
//建立SQL语句执行对象
Statement st=con.createStatement();
String id,name;
int age;
String qurey="select*from table1";//定义SQL语句
ResultSet rs=st.executeQuery(qurey);//执行SQL语句
//处理查询结果,将表中所有记录输出
System.out.print("学号"+"\t"+"姓名"+"\t"+"年龄"+"\n");
while(rs.next()){
id=rs.getString("ID");//读取“学号”字段,存入变量id
name=rs.getString("NAME");//读取“姓名”字段,存入变量name
age=rs.getInt("AGE");//读取“年龄”字段,存入变量age
//输出一条记录信息
System.out.print(id+"\t"+name+"\t"+age+"\n");
}
rs.close();
st.close();
con.close();
}catch(SQLException e2){
System.out.println(e2.toString());
}
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询