关于mysql jdbc 驱动问题 为什么一直提示我 找不到可用的驱动,难道是我下载的驱动有问题??
importjava.sql.*;publicclassDBConnectionTest{publicstaticvoidmain(String[]args){Strin...
import java.sql.*;
public class DBConnectionTest
{
public static void main(String[] args)
{
String driver="com.mysql.jdbc.driver";
String url="jdbc:mysql://localhost:3306/mysqlTest";
String userName="724434";
String password="724434";
Connection conn=null;
Statement stmt=null;
try
{
Class.forName(driver);//加载驱动
System.out.println("数据库加载成功");
}
catch(ClassNotFoundException e)
{
System.err.println("ClaaNotFoundException999");
}
finally{
try{
stmt.close();
if(conn!=null)
conn.close();
}
catch(SQLException e)
{
System.out.println("sqlexception异常"+e.getMessage());
e.printStackTrace();
} 展开
public class DBConnectionTest
{
public static void main(String[] args)
{
String driver="com.mysql.jdbc.driver";
String url="jdbc:mysql://localhost:3306/mysqlTest";
String userName="724434";
String password="724434";
Connection conn=null;
Statement stmt=null;
try
{
Class.forName(driver);//加载驱动
System.out.println("数据库加载成功");
}
catch(ClassNotFoundException e)
{
System.err.println("ClaaNotFoundException999");
}
finally{
try{
stmt.close();
if(conn!=null)
conn.close();
}
catch(SQLException e)
{
System.out.println("sqlexception异常"+e.getMessage());
e.printStackTrace();
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询