天天看点

Jdbc操作数据库  删

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

//预处理方式

public class preperSTest {

        public static void main(String[] args) throws SQLException

{

                  delete();

        }

        private static void delete() throws SQLException {

                  Connection conn = null;

                  PreparedStatement ps = null;

                  ResultSet rs = null;

                  try {

                           // 创建连接

                           conn = JdbcUtils.getConnection();

                           String sql = " delete from  student  where id = 1";

                           ps = conn.prepareStatement(sql);

                           int i = ps.executeUpdate();

                           System.out.println(i);

                  } finally {

                           JdbcUtils.release(rs, ps, conn);

                  }

}

————————————————

版权声明:本文为CSDN博主「明明如月学长」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:

https://blog.csdn.net/w605283073/article/details/46572501