使用mysql数据库
数据库建立完毕,测试程序
import java.sql.*;
public class HelloMySQL
{
public static void main(String[] args)
{
//System.out.println("Hello World!");
try{
Driver d = (Driver)Class.forName("com.mysql.jdbc.Driver").newInstance();
System.out.println("successed");
}
catch(Exception e){
System.out.println("Error:" + e.toString());
}
}
}
已经安装mysql-connector配置时出现错误,更新的jre安装在c分区,但是我配置环境变量(
数据库建立完毕,测试程序
import java.sql.*;
public class HelloMySQL
{
public static void main(String[] args)
{
//System.out.println("Hello World!");
try{
Driver d = (Driver)Class.forName("com.mysql.jdbc.Driver").newInstance();
System.out.println("successed");
}
catch(Exception e){
System.out.println("Error:" + e.toString());
}
}
}
已经安装mysql-connector配置时出现错误,更新的jre安装在c分区,但是我配置环境变量(
Environment variable
)确实e分区,javac无错误,执行时出现错误:java.lang.ClassNotFoundException:com.mysql.jdbc.Driver