连接MySQL数据库进行删除操作
MySQL_version:5.7.31 mysql-connector-java-5.1.7-bin.jar
package test;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class DeleteDemo {
public static void main(String[] args) throws Exception {
Class .forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost:3306/company";
String username="root";
String pwd="123456";
Connection con=DriverManager.getConnection(url, username, pwd);
System.out.println("连接:"+con);
String sql="delete from t_employee where empno=?";
PreparedStatement prep=con.prepareStatement(sql);
prep.setInt(1, 7902);
prep.executeUpdate();
con.close();
System.out.println("删除成功");
}
个人感悟:别搞特殊,自己挖的坑,还得自己埋。 我之前装的MySQL版本比较高:8.x.26 导致使用myeclipse报错:Exception in thread "main" java.lang.UnsupportedClassVersionError: com/mysql/jdbc/Driver : Unsupported major.minor version 52.0 原因:版本问题,用的JAVASE-1.6,mysql版本较高,所以重装mysql 5.7.31版本。 当然把1.6改为1.8,就可以支持了。
|