operation of db block

来源:互联网 发布:iphone导出视频到mac 编辑:程序博客网 时间:2024/05/22 08:26

try {

    try {

         db operation

    } finnaly {

         conn.close();

   }

}catch(Exception e) {

        catch exception

}

 

the inner try - finnaly is responsible for closing db connection.

outer try-catch to catch exception.

this is good method to design code because that make code maintain  and read easyly.

原创粉丝点击