(4-5)PreparedStatement接口采用()方式,它的执行性能高于Statement接口。
举一反三
- PreparedStatement是Statement的子接口,使用PreparedStatement要比使用Statement性能更高。
- Statement接口是PreparedStatement接口的子接口,它直接继承并重载PreparedStatement的方法。 A: 正确 B: 错误
- PreParedStatement接口是Statement接口的子接口,是用来执行动态SQL语句的工具接口。
- Statement接口继承了PreparedStatement接口,用来执行预编译的SQL语句
- 智慧职教: JDBC API中PreparedStatement接口执行速度一般要快于Statement接口。