美文网首页
jdbc batch execute result

jdbc batch execute result

作者: 王小杰at2019 | 来源:发表于2019-04-30 10:41 被阅读0次
    //--------------------------JDBC 3.0-----------------------------
    
        /**
         * The constant indicating that the current <code>ResultSet</code> object
         * should be closed when calling <code>getMoreResults</code>.
         *
         * @since 1.4
         */
        int CLOSE_CURRENT_RESULT = 1;
    
        /**
         * The constant indicating that the current <code>ResultSet</code> object
         * should not be closed when calling <code>getMoreResults</code>.
         *
         * @since 1.4
         */
        int KEEP_CURRENT_RESULT = 2;
    
        /**
         * The constant indicating that all <code>ResultSet</code> objects that
         * have previously been kept open should be closed when calling
         * <code>getMoreResults</code>.
         *
         * @since 1.4
         */
        int CLOSE_ALL_RESULTS = 3;
    
        /**
         * The constant indicating that a batch statement executed successfully
         * but that no count of the number of rows it affected is available.
         *
         * @since 1.4
         */
        int SUCCESS_NO_INFO = -2;
    
        /**
         * The constant indicating that an error occurred while executing a
         * batch statement.
         *
         * @since 1.4
         */
        int EXECUTE_FAILED = -3;
    
        /**
         * The constant indicating that generated keys should be made
         * available for retrieval.
         *
         * @since 1.4
         */
        int RETURN_GENERATED_KEYS = 1;
    
        /**
         * The constant indicating that generated keys should not be made
         * available for retrieval.
         *
         * @since 1.4
         */
        int NO_GENERATED_KEYS = 2;
    

    相关文章

      网友评论

          本文标题:jdbc batch execute result

          本文链接:https://www.haomeiwen.com/subject/ctemnqtx.html