亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? driverdelegate.java

?? Java中非常實用流控制工具
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @param state
     *          the state that the trigger should be stored in
     * @return the number of rows inserted
     */
    int insertTrigger(Connection conn, Trigger trigger, String state,
        JobDetail jobDetail) throws SQLException, IOException;

    /**
     * <p>
     * Insert the simple trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows inserted
     */
    int insertSimpleTrigger(Connection conn, SimpleTrigger trigger)
        throws SQLException;

    /**
     * <p>
     * Insert the blob trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows inserted
     */
    int insertBlobTrigger(Connection conn, Trigger trigger)
        throws SQLException, IOException;

    /**
     * <p>
     * Insert the cron trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows inserted
     */
    int insertCronTrigger(Connection conn, CronTrigger trigger)
        throws SQLException;

    /**
     * <p>
     * Update the base trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @param state
     *          the state that the trigger should be stored in
     * @return the number of rows updated
     */
    int updateTrigger(Connection conn, Trigger trigger, String state,
        JobDetail jobDetail) throws SQLException, IOException;

    /**
     * <p>
     * Update the simple trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows updated
     */
    int updateSimpleTrigger(Connection conn, SimpleTrigger trigger)
        throws SQLException;

    /**
     * <p>
     * Update the cron trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows updated
     */
    int updateCronTrigger(Connection conn, CronTrigger trigger)
        throws SQLException;

    /**
     * <p>
     * Update the blob trigger data.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger to insert
     * @return the number of rows updated
     */
    int updateBlobTrigger(Connection conn, Trigger trigger)
        throws SQLException, IOException;

    /**
     * <p>
     * Check whether or not a trigger exists.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the number of rows updated
     */
    boolean triggerExists(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Update the state for a given trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @param state
     *          the new state for the trigger
     * @return the number of rows updated
     */
    int updateTriggerState(Connection conn, String triggerName,
        String groupName, String state) throws SQLException;

    /**
     * <p>
     * Update the given trigger to the given new state, if it is in the given
     * old state.
     * </p>
     * 
     * @param conn
     *          the DB connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @param newState
     *          the new state for the trigger
     * @param oldState
     *          the old state the trigger must be in
     * @return int the number of rows updated
     * @throws SQLException
     */
    int updateTriggerStateFromOtherState(Connection conn,
        String triggerName, String groupName, String newState,
        String oldState) throws SQLException;

    /**
     * <p>
     * Update the given trigger to the given new state, if it is one of the
     * given old states.
     * </p>
     * 
     * @param conn
     *          the DB connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @param newState
     *          the new state for the trigger
     * @param oldState1
     *          one of the old state the trigger must be in
     * @param oldState2
     *          one of the old state the trigger must be in
     * @param oldState3
     *          one of the old state the trigger must be in
     * @return int the number of rows updated
     * @throws SQLException
     */
    int updateTriggerStateFromOtherStates(Connection conn,
        String triggerName, String groupName, String newState,
        String oldState1, String oldState2, String oldState3)
        throws SQLException;

    /**
     * <p>
     * Update the all triggers to the given new state, if they are in one of
     * the given old states AND its next fire time is before the given time.
     * </p>
     * 
     * @param conn
     *          the DB connection
     * @param newState
     *          the new state for the trigger
     * @param oldState1
     *          one of the old state the trigger must be in
     * @param oldState2
     *          one of the old state the trigger must be in
     * @param time
     *          the time before which the trigger's next fire time must be
     * @return int the number of rows updated
     * @throws SQLException
     */
    int updateTriggerStateFromOtherStatesBeforeTime(Connection conn,
        String newState, String oldState1, String oldState2, long time)
        throws SQLException;

    /**
     * <p>
     * Update all triggers in the given group to the given new state, if they
     * are in one of the given old states.
     * </p>
     * 
     * @param conn
     *          the DB connection
     * @param groupName
     *          the group containing the trigger
     * @param newState
     *          the new state for the trigger
     * @param oldState1
     *          one of the old state the trigger must be in
     * @param oldState2
     *          one of the old state the trigger must be in
     * @param oldState3
     *          one of the old state the trigger must be in
     * @return int the number of rows updated
     * @throws SQLException
     */
    int updateTriggerGroupStateFromOtherStates(Connection conn,
        String groupName, String newState, String oldState1,
        String oldState2, String oldState3) throws SQLException;

    /**
     * <p>
     * Update all of the triggers of the given group to the given new state, if
     * they are in the given old state.
     * </p>
     * 
     * @param conn
     *          the DB connection
     * @param groupName
     *          the group containing the triggers
     * @param newState
     *          the new state for the trigger group
     * @param oldState
     *          the old state the triggers must be in
     * @return int the number of rows updated
     * @throws SQLException
     */
    int updateTriggerGroupStateFromOtherState(Connection conn,
        String groupName, String newState, String oldState)
        throws SQLException;

    /**
     * <p>
     * Update the states of all triggers associated with the given job.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param jobName
     *          the name of the job
     * @param groupName
     *          the group containing the job
     * @param state
     *          the new state for the triggers
     * @return the number of rows updated
     */
    int updateTriggerStatesForJob(Connection conn, String jobName,
        String groupName, String state) throws SQLException;

    /**
     * <p>
     * Update the states of any triggers associated with the given job, that
     * are the given current state.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param jobName
     *          the name of the job
     * @param groupName
     *          the group containing the job
     * @param state
     *          the new state for the triggers
     * @param oldState
     *          the old state of the triggers
     * @return the number of rows updated
     */
    int updateTriggerStatesForJobFromOtherState(Connection conn,
        String jobName, String groupName, String state, String oldState)
        throws SQLException;

    /**
     * <p>
     * Delete all of the listeners associated with a given trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger whose listeners will be deleted
     * @param groupName
     *          the name of the group containing the trigger
     * @return the number of rows deleted
     */
    int deleteTriggerListeners(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Associate a listener with the given trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param trigger
     *          the trigger
     * @param listener
     *          the name of the listener to associate with the trigger
     * @return the number of rows inserted
     */
    int insertTriggerListener(Connection conn, Trigger trigger,
        String listener) throws SQLException;

    /**
     * <p>
     * Select the listeners associated with a given trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return array of <code>String</code> trigger listener names
     */
    String[] selectTriggerListeners(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Delete the simple trigger data for a trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the number of rows deleted
     */
    int deleteSimpleTrigger(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Delete the BLOB trigger data for a trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the number of rows deleted
     */
    int deleteBlobTrigger(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Delete the cron trigger data for a trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the number of rows deleted
     */
    int deleteCronTrigger(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Delete the base trigger data for a trigger.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the number of rows deleted
     */
    int deleteTrigger(Connection conn, String triggerName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Select the number of triggers associated with a given job.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param jobName
     *          the name of the job
     * @param groupName
     *          the group containing the job
     * @return the number of triggers for the given job
     */
    int selectNumTriggersForJob(Connection conn, String jobName,
        String groupName) throws SQLException;

    /**
     * <p>
     * Select the job to which the trigger is associated.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param triggerName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return the <code>{@link org.quartz.JobDetail}</code> object
     *         associated with the given trigger
     */
    JobDetail selectJobForTrigger(Connection conn, String triggerName,
        String groupName, ClassLoadHelper loadHelper) 
        throws ClassNotFoundException, SQLException;

    /**
     * <p>
     * Select the stateful jobs which are referenced by triggers in the given
     * trigger group.
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param groupName
     *          the trigger group
     * @return a List of Keys to jobs.
     */
    List selectStatefulJobsOfTriggerGroup(Connection conn,
        String groupName) throws SQLException;

    /**
     * <p>
     * Select the triggers for a job
     * </p>
     * 
     * @param conn
     *          the DB Connection
     * @param jobName
     *          the name of the trigger
     * @param groupName
     *          the group containing the trigger
     * @return an array of <code>(@link org.quartz.Trigger)</code> objects
     *         associated with a given job.
     * @throws SQLException

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本三级韩国三级欧美三级| 亚洲成a天堂v人片| 亚洲综合小说图片| 美洲天堂一区二卡三卡四卡视频| 91黄色免费网站| 亚洲精品国久久99热| 不卡一卡二卡三乱码免费网站| 欧美不卡123| 蜜桃传媒麻豆第一区在线观看| 色哟哟欧美精品| 91免费小视频| 九九精品视频在线看| 亚洲激情欧美激情| 国产精品色一区二区三区| 日韩一区二区三区高清免费看看| 91小视频在线观看| 国产成人免费av在线| 亚洲一区二区三区在线看| 国产欧美一区二区三区网站| 日韩一区二区三区免费观看| 国产欧美日本一区视频| 日韩精品中文字幕在线一区| 91国偷自产一区二区三区观看| 亚洲尤物视频在线| 色视频一区二区| 亚洲欧美另类小说视频| 亚洲精品伦理在线| 欧美电视剧免费全集观看| 国产成人精品三级| 午夜天堂影视香蕉久久| 日韩午夜激情电影| 日韩一区二区三区视频在线 | 中文字幕一区二区日韩精品绯色| 日韩一区二区三区四区| 国产日韩欧美精品一区| 午夜欧美大尺度福利影院在线看| 综合婷婷亚洲小说| 日本一区二区成人在线| 久久久精品免费网站| 久久综合狠狠综合久久激情| 日韩欧美国产一二三区| 欧美一区二区成人6969| 亚洲欧美在线视频观看| 成人av免费网站| 久久久久久夜精品精品免费| 日韩一区二区三区精品视频| 欧美一二三区在线观看| 91精品在线免费观看| 7777精品伊人久久久大香线蕉经典版下载 | 不卡一二三区首页| 亚洲美女偷拍久久| 日韩精品专区在线影院重磅| 国产精品不卡一区| 久久久国产综合精品女国产盗摄| 欧美一区二区网站| 在线观看日韩高清av| 国产精品18久久久久| 日本美女一区二区| 日韩精品电影在线观看| 亚洲黄色性网站| 18欧美亚洲精品| 久久se精品一区精品二区| 日本成人在线网站| 九九热在线视频观看这里只有精品| 久久国产人妖系列| 国产suv精品一区二区883| 成年人网站91| 欧美日韩一区精品| 日韩欧美亚洲一区二区| 久久久不卡影院| 亚洲人xxxx| 日本三级韩国三级欧美三级| 国产成人综合精品三级| 一道本成人在线| 欧美一区二区三区日韩视频| 亚洲精品一区二区在线观看| 国产精品欧美一级免费| 亚洲人快播电影网| 丝袜亚洲另类欧美| 国产精品1区2区| 欧美无砖砖区免费| 久久久精品一品道一区| 亚洲视频每日更新| 美女一区二区视频| 成人网页在线观看| 欧美另类变人与禽xxxxx| 精品国产乱码久久久久久1区2区| 国产精品欧美极品| 视频在线观看一区二区三区| 国产精品白丝av| 欧美日韩午夜影院| 日本一区二区三区视频视频| 日韩在线a电影| 成人午夜激情视频| 日韩欧美在线网站| 亚洲免费高清视频在线| 久久99精品网久久| 欧美手机在线视频| 国产女人aaa级久久久级| 婷婷亚洲久悠悠色悠在线播放| 国产.欧美.日韩| 日韩一区二区在线看片| 一区二区三区国产豹纹内裤在线| 国产在线播放一区三区四| 欧美亚洲国产一区二区三区va| 久久久国产精品不卡| 日本欧美一区二区三区乱码 | 日韩视频在线一区二区| 亚洲理论在线观看| 欧美日韩一区在线观看| 亚洲国产中文字幕在线视频综合| 国产精品一级在线| 日韩欧美国产精品一区| 日韩激情在线观看| 欧美午夜宅男影院| 一区二区三区丝袜| 97久久精品人人做人人爽| 欧美精品一区二区三区一线天视频 | 久久综合色天天久久综合图片| 一区二区三区精品| 国产91丝袜在线播放0| 精品久久五月天| 亚洲国产一区二区三区青草影视| 97aⅴ精品视频一二三区| www日韩大片| 国内偷窥港台综合视频在线播放| 欧美日韩国产大片| 亚洲精品中文字幕乱码三区| 成人精品一区二区三区四区| 久久久五月婷婷| 激情六月婷婷综合| 欧美成人猛片aaaaaaa| 蜜桃精品在线观看| 日韩亚洲欧美一区二区三区| 视频一区欧美日韩| 欧美美女网站色| 香蕉久久夜色精品国产使用方法 | 国产精品一级黄| 久久丝袜美腿综合| 精品无码三级在线观看视频| 日韩欧美国产三级电影视频| 免费成人结看片| 欧美mv日韩mv亚洲| 精品制服美女丁香| 久久网这里都是精品| 国产在线视视频有精品| 久久久美女毛片| 国产不卡视频在线观看| 亚洲国产精品成人综合色在线婷婷| 国产成人综合在线| 国产精品狼人久久影院观看方式| 成年人午夜久久久| 亚洲伦在线观看| 欧美图片一区二区三区| 手机精品视频在线观看| 精品国产乱码久久| 国产精品一线二线三线| 国产精品五月天| 在线观看欧美精品| 天天综合网 天天综合色| 精品国产乱码久久久久久图片| 国产成人夜色高潮福利影视| 国产精品久久久久久户外露出| 91看片淫黄大片一级| 中文字幕一区二区三区在线播放| 欧美成人伊人久久综合网| 欧美日韩你懂得| 欧美国产一区二区| 欧美成人国产一区二区| 欧美一区二区精品久久911| 97成人超碰视| 91麻豆文化传媒在线观看| 国产美女精品人人做人人爽| 免费视频最近日韩| 一区二区日韩电影| 亚洲天天做日日做天天谢日日欢 | 亚洲6080在线| 91 com成人网| 国产成人精品1024| 一区二区三区精密机械公司| 欧美成人aa大片| 91丝袜美女网| 美女视频一区二区三区| 国产午夜久久久久| 欧美在线小视频| 国产精品一品视频| 无吗不卡中文字幕| 中文字幕不卡一区| 欧美高清视频一二三区| 成人午夜在线视频| 日本免费在线视频不卡一不卡二| 亚洲国产高清aⅴ视频| 欧美三级韩国三级日本三斤| 国产成人综合亚洲网站| 亚洲高清一区二区三区| 国产喷白浆一区二区三区| 在线成人午夜影院| 成人精品国产免费网站| 亚洲自拍偷拍麻豆| 国产日韩v精品一区二区|