使用PreparedStatement实现添加表数据
Jihongchang(讨论 | 贡献)2022年12月15日 (四) 03:43的版本
https://www.bilibili.com/video/BV1eJ411c7rf?p=13
An object that represents a precompiled SQL statement.
java.sql.Connection
package java.sql;
……
public interface Connection extends Wrapper, AutoCloseable {
……
PreparedStatement prepareStatement(String sql) throws SQLException;
……
}