mysql数据库__Jdbc直接操作__Statement__delete

一、代码如下

private void deleteMysql() {
		// TODO Auto-generated method stub
		java.sql.Statement sm= null;
		java.sql.Connection cn = null;
		ResultSet rs = null;

		try {
			//加载驱动程序
			Class.forName("com.mysql.jdbc.Driver").newInstance();
			//得到连接
			cn = DriverManager.getConnection(
					"jdbc:mysql://localhost:3306/learn?user=root&password=&useUnicode=true&characterEncoding=UTF8");
			sm= cn.createStatement();

			int i= sm.executeUpdate("delete from user where username= '332'");
			System.out.println(i);
			if(i >= 1) {
				System.out.println("删除:成功");
			}else {
				System.out.println("删除:失败");
			}
			

		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {
			try {
				if(sm != null) {sm.close();}
				if(cn != null) {cn.close();}} catch (SQLException e) {e.printStackTrace();}
		}
	}
原文地址:https://www.cnblogs.com/wujianbo123/p/7637019.html