首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

数据库连接出现异常java.sql.SQLException: No suitable driver

2014-01-26 
数据库连接出现异常java.sql.SQLException: No suitable driver:程序如下: import java.sql.*public class

数据库连接出现异常java.sql.SQLException: No suitable driver:

程序如下:
import java.sql.*;
public class SqlTest{
public static void main(String args[]) throws
SQLException,ClassNotFoundException{
String dburl="jdbc.odbc.MySql";
String name="caiyanying";
String password="awftifamd";
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection c=DriverManager.getConnection(dburl,name,password);
}catch(ClassNotFoundException e){
System.out.println("Class not found exception.");
e.printStackTrace();
System.exit(1);
}catch(SQLException e){
System.out.println("sqlexception.");
e.printStackTrace();
}
}
}
编译通过,可执行的时候出现异常.
sqlexception.
java.sql.SQLException: No suitable driver
at java.sql.DriverManager.getConnection(DriverManager.java:532)         

热点排行