程序详解—Statement

Jdbc程序中的Statement对象用于向数据库发送SQL语句, Statement对象常用方法:

executeQuery(String?sql) :用于向数据发送查询语句。

executeUpdate(String?sql):用于向数据库发送insert、update或delete语句

execute(String sql):用于向数据库发送任意sql语句

addBatch(String?sql) :把多条sql语句放到一个批处理中。

executeBatch():向数据库发送一批sql语句执行。 

你可能感兴趣的:(statement)