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

📄 accessfactoryglobals.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.iapi.store.access.AccessFactoryGlobals   Copyright 2000, 2004 The Apache Software Foundation or its licensors, as 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.iapi.store.access;/**Global constants provided by the Access Interface.**/public interface AccessFactoryGlobals{    /**************************************************************************     * Static constants.     **************************************************************************     */    /**     * The name for user transactions. This name will be displayed by the     * transactiontable VTI.     */    public static final String USER_TRANS_NAME = "UserTransaction";    /**     * The name for system transactions. This name will be displayed by the     * transactiontable VTI.     */    public static final String SYS_TRANS_NAME = "SystemTransaction";	/**	 *	Overflow Threshold	 *	 *  This defined how large the row can be before it becomes a long row,	 *  during an insert.	 *	 *  @see org.apache.derby.iapi.store.raw.Page	 */	public static final int BTREE_OVERFLOW_THRESHOLD = 50;	public static final int HEAP_OVERFLOW_THRESHOLD  = 100;	public static final int SORT_OVERFLOW_THRESHOLD  = 100;    public static final String CFG_CONGLOMDIR_CACHE = "ConglomerateDirectoryCache";    public static final String HEAP = "heap";	public static final String DEFAULT_PROPERTY_NAME = "derby.defaultPropertyName";	public static final String PAGE_RESERVED_SPACE_PROP = "0";	public static final String CONGLOM_PROP = "derby.access.Conglomerate.type";	public static final String IMPL_TYPE = "implType";	public static final String SORT_EXTERNAL = "sort external";	public static final String SORT_INTERNAL = "sort internal";	public static final String NESTED_READONLY_USER_TRANS = "nestedReadOnlyUserTransaction";	public static final String NESTED_UPDATE_USER_TRANS = "nestedUpdateUserTransaction";    public static final String RAMXACT_CONTEXT_ID = "RAMTransactionContext";    public static final String RAMXACT_CHILD_CONTEXT_ID = "RAMChildContext";    public static final String RAMXACT_INTERNAL_CONTEXT_ID = "RAMInternalContext";}

⌨️ 快捷键说明

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