当前位置: 首页>>代码示例>>Java>>正文


Java Table.getIndexList方法代码示例

本文整理汇总了Java中org.hsqldb.Table.getIndexList方法的典型用法代码示例。如果您正苦于以下问题:Java Table.getIndexList方法的具体用法?Java Table.getIndexList怎么用?Java Table.getIndexList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.hsqldb.Table的用法示例。


在下文中一共展示了Table.getIndexList方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: RowStoreAVLMemory

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLMemory(Table table) {

        this.database     = table.database;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];
        lock              = new ReentrantReadWriteLock();
        readLock          = lock.readLock();
        writeLock         = lock.writeLock();
    }
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:11,代码来源:RowStoreAVLMemory.java

示例2: RowStoreAVLDisk

import org.hsqldb.Table; //导入方法依赖的package包/类
protected RowStoreAVLDisk(Table table) {

        this.database     = table.database;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];
        largeData         = database.logger.getDataFileFactor() > 1;
    }
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:9,代码来源:RowStoreAVLDisk.java

示例3: RowStoreAVLDiskData

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLDiskData(Table table) {

        this.database     = table.database;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];
        lock              = new ReentrantReadWriteLock();
        readLock          = lock.readLock();
        writeLock         = lock.writeLock();
    }
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:11,代码来源:RowStoreAVLDiskData.java

示例4: RowStoreAVLMemory

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLMemory(PersistentStoreCollection manager, Table table) {

        this.manager      = manager;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];
        rowIdMap          = new IntKeyHashMapConcurrent();

        manager.setStore(table, this);
    }
 
开发者ID:s-store,项目名称:sstore-soft,代码行数:11,代码来源:RowStoreAVLMemory.java

示例5: RowStoreAVLDisk

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLDisk(PersistentStoreCollection manager,
                       DataFileCache cache, Table table) {

    this.manager      = manager;
    this.table        = table;
    this.indexList    = table.getIndexList();
    this.accessorList = new CachedObject[indexList.length];
    this.cache        = cache;

    manager.setStore(table, this);

    rowActionMap = table.database.txManager.rowActionMap;
}
 
开发者ID:s-store,项目名称:sstore-soft,代码行数:14,代码来源:RowStoreAVLDisk.java

示例6: RowStoreAVLMemory

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLMemory(PersistentStoreCollection manager, Table table) {

        this.database     = table.database;
        this.manager      = manager;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];

        manager.setStore(table, this);
    }
 
开发者ID:Julien35,项目名称:dev-courses,代码行数:11,代码来源:RowStoreAVLMemory.java

示例7: RowStoreAVLDisk

import org.hsqldb.Table; //导入方法依赖的package包/类
protected RowStoreAVLDisk(PersistentStoreCollection manager, Table table) {

        this.database     = table.database;
        this.manager      = manager;
        this.table        = table;
        this.indexList    = table.getIndexList();
        this.accessorList = new CachedObject[indexList.length];

        manager.setStore(table, this);

        largeData = database.logger.getDataFileFactor() > 1;
    }
 
开发者ID:Julien35,项目名称:dev-courses,代码行数:13,代码来源:RowStoreAVLDisk.java

示例8: RowStoreAVLDiskData

import org.hsqldb.Table; //导入方法依赖的package包/类
public RowStoreAVLDiskData(PersistentStoreCollection manager,
                           Table table) {

    this.database     = table.database;
    this.manager      = manager;
    this.table        = table;
    this.indexList    = table.getIndexList();
    this.accessorList = new CachedObject[indexList.length];

    manager.setStore(table, this);
}
 
开发者ID:Julien35,项目名称:dev-courses,代码行数:12,代码来源:RowStoreAVLDiskData.java


注:本文中的org.hsqldb.Table.getIndexList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。