预声明之删除

Posted 苏轼的红烧肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了预声明之删除相关的知识,希望对你有一定的参考价值。

package com.lianxi;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.util.Scanner;

public class Shanchu {

    public static void main(String[] args) throws Exception {
        Class.forName("com.mysql.jdbc.Driver");
        Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/boooks","root","tiger");
        
        PreparedStatement ps=conn.prepareStatement("delete from tb_user where userno=?");
        Scanner s=new Scanner(System.in);
        System.out.println("请输入用户编号");
        int no=s.nextInt();
        ps.setInt(1, no);
        ps.execute();
        conn.close();
        
    }

}

 

以上是关于预声明之删除的主要内容,如果未能解决你的问题,请参考以下文章

导致资产预编译在heroku部署上失败的代码片段

js - 基础 之 预编译总结

js 常用代码片段

VSCode自定义代码片段——声明函数

VSCode自定义代码片段8——声明函数

js全局变量与局部变量 预解析与作用域链详解