• 个人事务管理系统

    设计一个个人事务管理系统 public ResultSet executeSelect(String inquire) throws SQLException { //执行数据库查询操作 rs = stmt.executeQuery(inquire); return rs; } …… …… public boolean executeInsert(String insert) throws SQLException {//执行数据库添加操作 int n = 0; n = stmt.executeUpdate(insert); this.close(); if (n > 0) { return true; } else { return false; } }

    0
    392
    260KB
    2012-12-17
    9
关注 私信
上传资源赚积分or赚钱