问答详情
源自:8-3 DBHelper类设计

DBHelper类的设计问题

缺少连接关闭数据库连接的方法,老师应该加上去!

提问者:顾青尊 2015-10-08 14:20

个回答

  • 连宏伟HW
    2016-07-12 16:42:00

    这只是一个样例,等到工作了,会规范很多

  • 不会飞的小飞象
    2016-01-03 11:27:21

    if (rs != null) {

    try {

    rs.close();

    rs = null;

    } catch (Exception ex) {

    ex.printStackTrace();

    }

    }

    // 释放语句对象

    if (stmt != null) {

    try {

    stmt.close();

    stmt = null;

    } catch (Exception ex) {

    ex.printStackTrace();

    }

    }

    }