Package org.gdbms.engine.data

Examples of org.gdbms.engine.data.OpenCloseCounter


            SpatialObjectDriver driver) {
        super(name, alias);
        mes = new SpatialMetadataEditionSupport(this);
        rowOrientedEdition = new RowOrientedEditionDataSourceImpl(this, driver, mes);
        rowOrientedEdition.setDriver(driver);
        ocCounter = new OpenCloseCounter(this);
        spatialDataSourceImpl = new SpatialDataSourceImpl(this, driver);
        objectSupport = new ObjectDataSourceSupport(driver);
        driverDataSourceSupport = new DriverDataSourceImpl(driver);
        this.driver = driver;
    }
View Full Code Here


    protected DBSource def;
    private int[] cachedPKIndices;
    protected DataSource ds;
   
    public DBDataSourceSupport(DataSource ds, DBSource def, DBDriver driver) {
        ocCounter = new OpenCloseCounter(ds);
        this.driver = driver;
        this.def = def;
        this.ds = ds;
    }
View Full Code Here

    private FileDriver driver;
    private OpenCloseCounter ocCounter;
    private File file;
   
    public FileDataSourceSupport(DataSource ds, File file, FileDriver driver) {
        ocCounter = new OpenCloseCounter(ds);
        this.file = file;
        this.driver = driver;
    }
View Full Code Here

            AlphanumericObjectDriver driver) {
      super(name, alias);
        mes = new MetadataEditionSupport(this);
        rowOrientedEdition = new RowOrientedEditionDataSourceImpl(this, driver, mes);
        rowOrientedEdition.setDriver(driver);
        ocCounter = new OpenCloseCounter(this);
        objectSupport = new ObjectDataSourceSupport(driver);
        driverDataSourceSupport = new DriverDataSourceImpl(driver);
        this.driver = driver;
    }
View Full Code Here

TOP

Related Classes of org.gdbms.engine.data.OpenCloseCounter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.