jdbc数据访问技术 1.JDBC如何做事务处理? Con.setAutoCommit(false) Con.commit(); Con.rollback(); 2.写出几个在Jdbc中常用的接口 preparedStatement, callableStatement, statement, Connection, ResultSet 3.简述你对Statement,PreparedStatement,CallableStatement的理解 statement用于执行静态 SQL 语句并返回…