2020国产成人精品视频,性做久久久久久久久,亚洲国产成人久久综合一区,亚洲影院天堂中文av色

分享

struct加Ajax (5)

 WindySky 2007-01-22

com.san.strutsAjax.utils.EngenderID (主鍵生成類)

package com.san.strutsAjax.utils;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.ResultSet;

/**
 * Created by IntelliJ IDEA.
 * User: huxinsheng
 * Date: 2006-4-9
 * Time: 15:41:39
 * To change this template use File | Settings | File Templates.
 */
public class EngenderID {

    public static int engenderTableId(String table) throws Exception {
        Connection conn = null;
        PreparedStatement pstmt = null;
        ResultSet res = null;
        int i = 0;
        String sql = "select max(id)as id from " + table;
        try {
            conn = ConnectionDB.ConnectToDb();
            pstmt = conn.prepareStatement(sql);
            res = pstmt.executeQuery();
            while(res.next()){
                i = res.getInt("id");
            }
            if (i == 0) {
                return 1;
            } else {
                return ++i;
            }
        } catch (Exception e) {
            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
            throw new Exception(e);
        } finally {
            try {
                conn.close();
            } catch (SQLException e) {
                e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
            }
        }
    }
}

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多