⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codepoint.java

📁 derby database source code.good for you.
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/*   Derby - Class org.apache.derby.client.net.CodePoint   Copyright (c) 2001, 2005 The Apache Software Foundation or its licensors, where applicable.   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.*/package org.apache.derby.client.net;public class CodePoint {    public static final int FIXED_ROW_QUERY_PROTOCOL = 0;    public static final int LIMITED_BLOCK_QUERY_PROTOCOL = 1;    public static final int FORCE_FIXED_ROW_QUERY_PROTOCOL = 2;    // Character Subtype MBCS    static final int CSTMBCS = 0x2435;    // Force Fixed Row Query Protocol    static final int FRCFIXROW = 0x2410;    // Title    static final int TITLE = 0x0045;    // ---------------callable statement codepoints-------------------------------    // PKGSNLST    static final int PKGSNLST = 0x2139;    // Output Expected    static final int OUTEXP = 0x2111;    // Procedure Name    static final int PRCNAM = 0x2138;    // Maximum Result Set Count.    static final int MAXRSLCNT = 0x2140;    // Maximum Result Set Count No Limit.    // Requester is capable of receiving all result sets in the response to EXCSQLSTT.    static final int MAXRSLCNT_NOLIMIT = 0xffff;    // Result Set Flags    static final int RSLSETFLG = 0x2142;    static final int RSLSETFLG_RETURN_NAMES = 0x80;    static final int RSLSETFLG_RETURN_LABELS = 0x40;    // RSLSETFLGs added in SQLAM 7 for requesting standard, extended, or light sqldas    static final int RSLSETFLG_STANDARD_SQLDA = 0x00;    static final int RSLSETFLG_EXTENDED_SQLDA = 0x04;    // --------------------code points for constant ddm data----------------------    // Indicates false state.  This 1-byte code point is used by some DDM parameters.    static final byte FALSE = -16;  // was 0xf0    // Indicates true state.  This 1-byte code point is used by some DDM parameters.    static final byte TRUE = -15;  // was 0xf1    // Zero indicator constant.    // Indicates data does flow.    static final int ZEROIND = 0x00;    // FDOCA NULL indicator constant.    // Indicates data does not flow.    static final int NULLDATA = 0xFF;    // Security check was successful.    static final int SECCHKCD_00 = 0x00;    // SECMEC value not supported.    static final int SECCHKCD_01 = 0x01;    // Local security service info.    static final int SECCHKCD_08 = 0x08;    // Local security service retryable error.    static final int SECCHKCD_09 = 0x09;    // Local security service non-retryable error.    static final int SECCHKCD_0A = 0x0A;    // SECTKN missing or invalid.    static final int SECCHKCD_0B = 0x0B;    // Password expired.    static final int SECCHKCD_0E = 0x0E;    // Password invalid.    static final int SECCHKCD_0F = 0x0F;    // Password missing.    static final int SECCHKCD_10 = 0x10;    // Userid missing.    static final int SECCHKCD_12 = 0x12;    // Userid invalid.    static final int SECCHKCD_13 = 0x13;    // Userid revoked.    static final int SECCHKCD_14 = 0x14;    // New password invalid.    static final int SECCHKCD_15 = 0x15;    //-----------------------ddm enumerated values-------------------------------    // TYPSQLDA - Standard Output SQLDA    static final int TYPSQLDA_STD_OUTPUT = 0;    // TYPSQLDA - Standard Input SQLDA    static final int TYPSQLDA_STD_INPUT = 1;    // TYPSQLDA - Light Output SQLDA    static final int TYPSQLDA_LIGHT_OUTPUT = 2;    // TYPSQLDA - Light Input SQLDA    static final int TYPSQLDA_LIGHT_INPUT = 3;    // TYPSQLDA - Extended Output SQLDA    static final int TYPSQLDA_X_OUTPUT = 4;    // TYPSQLDA - Extended Input SQLDA    static final int TYPSQLDA_X_INPUT = 5;    // QRYCLSIMP - Target Server determines whether to implicitly    // close the cursor or not upon SQLSTATE 02000 based on cursor type.    static final int QRYCLSIMP_SERVER_CHOICE = 0x00;    // QRYCLSIMP - Target Server must implicitly close the cursor    // upon SQLSTATE 02000.    static final int QRYCLSIMP_YES = 0x01;    // QRYCLSIMP - Target Server must not implicitly close the cursor    // upon SQLSTATE 02000.    static final int QRYCLSIMP_NO = 0x02;    // ----------------------ddm code points--------------------------------------    // Exchange Server Attributes.    final static int EXCSAT = 0x1041;    // Sync Point Control Request.    public final static int SYNCCTL = 0x1055;    // Sync Point Resync Command.    final static int SYNCRSY = 0x1069;    // Access Security.    final static int ACCSEC = 0x106D;    // Security Check.    final static int SECCHK = 0x106E;    // Access RDB.    final static int ACCRDB = 0x2001;    // Close Query.    final static int CLSQRY = 0x2005;    // Continue Query.    final static int CNTQRY = 0x2006;    // Describe SQL Statement.    final static int DSCSQLSTT = 0x2008;    // Execute Immediate SQL Statement.    final static int EXCSQLIMM = 0x200A;    // Execute SQL Statement.    final static int EXCSQLSTT = 0x200B;    // Set SQL Environment.    final static int EXCSQLSET = 0x2014;    // Open Query.    final static int OPNQRY = 0x200C;    // Output override.    final static int OUTOVR = 0x2415;    // Prepare SQL Statement.    final static int PRPSQLSTT = 0x200D;    // RDB Commit Unit of Work.    final static int RDBCMM = 0x200E;    // RDB Rollback Unit of Work.    final static int RDBRLLBCK = 0x200F;    // Describe RDB Table.    final static int DSCRDBTBL = 0x2012;    // SQL Program Variable Data.    final static int SQLDTA = 0x2412;    // SQL Data Reply Data.    public final static int SQLDTARD = 0x2413;    // SQL Statement.    final static int SQLSTT = 0x2414;    // Query Answer Set Description.    public final static int QRYDSC = 0x241A;    // Query Answer Set Data.    public final static int QRYDTA = 0x241B;    // SQL Statement Attributes.    final static int SQLATTR = 0x2450;    // Access Security Reply Data.    // Contains the security information from a target server's    // security manager.  This information is returned in response    // to an ACCSEC command.    static final int ACCSECRD = 0x14AC;    // Agent codepoint constant.    static final int AGENT = 0x1403;    // The codepoint for codepoint    static final int CODPNT = 0x000C;    // CCSID for Double-Byte Characters codepoint constant.    static final int CCSIDDBC = 0x119D;    // CCSID for Mixed-Byte Characters codepoint constant.    static final int CCSIDMBC = 0x119E;    // CCSID for Single-Byte Characters codepoint constant.    static final int CCSIDSBC = 0x119C;    // Describes the communications manager that supports    // conversational protocols by using System Network    // Architecture Logical Unit 6.2 (SNA LU 6.2) local    // communications facilities.    static final int CMNAPPC = 0x1444;    // TCP/IP Communication Manager codepoint constant.  Min. level 5.    static final int CMNTCPIP = 0x1474;    // Correlation Token codepoint constant.    static final int CRRTKN = 0x2135;    // Description Error code    static final int DSCERRCD = 0x2101;    // Server Attributes Reply Data codepoint constant.    static final int EXCSATRD = 0x1443;    // External Name codepoint constant.    static final int EXTNAM = 0x115E;    // Fixed Row Query Protocol.    static final int FIXROWPRC = 0x2418;    // Limited Block Query Protocol.    static final int LMTBLKPRC = 0x2417;    // Maximum Number of Extra Blocks.    static final int MAXBLKEXT = 0x2141;    // Manager Level List codepoint constant.    static final int MGRLVLLS = 0x1404;    // Manager Level Number Attribute constants.    // Specifies the level of a defined DDM manager.    static final int MGRLVLN = 0x1473;    // Password    static final int PASSWORD = 0x11A1;    // Package name & consistency token    static final int PKGNAMCT = 0x2112;    // Conversational Protocol Error Code    static final int PRCCNVCD = 0x113F;    // Product Specific Identifier codepoint constant.    static final int PRDID = 0x112E;    // Product Specific Data    static final int PRDDTA = 0x2104;    // Query Attribute for Scrollability.    static final int QRYATTSCR = 0x2149;    // Query Attribute for Rowset    static final int QRYATTSET = 0x214A;    // Query Attribute for Sensitivity.    static final int QRYATTSNS = 0x2157;    // Query Attribute for Updatability.    static final int QRYATTUPD = 0x2150;    // Query Close Implicit    static final int QRYCLSIMP = 0x215D;    // Query Scroll Orientation.    static final int QRYSCRORN = 0x2152;    // Query Scroll Relative Orientation.    static final int QRYSCRREL = 1;    // Query Scroll Absolute Orientation.    static final int QRYSCRABS = 2;    // Query Scroll After Orientation.    static final int QRYSCRAFT = 3;    // Query Scroll Before Orientation.    static final int QRYSCRBEF = 4;    // Query Instance Identifier    static final int QRYINSID = 0x215B;    // Query Insensitive to Changes    static final int QRYINS = 1;    // Query Attributes is Unknown or Undefined    static final int QRYUNK = 0;    // Query Row Number.    static final int QRYROWNBR = 0x213D;    // Query Block Reset.    static final int QRYBLKRST = 0x2154;    // Query Returns Data.    static final int QRYRTNDTA = 0x2155;    // Query Block Protocol Control    static final int QRYBLKCTL = 0x2132;    // Query Block Size    static final int QRYBLKSZ = 0x2114;    // Query Protocol Type

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -