Package org.gdbms.engine.data

Examples of org.gdbms.engine.data.FreeingResourcesException


        try {
            dbws = null;
            ds.stop();
        } catch (DriverException e) {
            throw new FreeingResourcesException(e);
        }
    }
View Full Code Here


            throw e;
        }
        try {
            rowOrientedEdition.commitTrans();
        } catch (DriverException e) {
            throw new FreeingResourcesException("Commit successfully done", e);
        }
    }
View Full Code Here

        File temp = new File(fileDataSource.getDriver().completeFileName(getDataSourceFactory().getTempFile()));
        getDriver().writeFile(temp, this);
        try {
            rowOrientedEdition.commitTrans();
        } catch (DriverException e) {
            throw new FreeingResourcesException("Cannot free resources: data writen in " + temp.getAbsolutePath(), e);
        }
        try {
      getDriver().copy(temp, fileDataSource.getFile());
    } catch (IOException e) {
            throw new FreeingResourcesException("Cannot copy file: data writen in " + temp.getAbsolutePath(), e);
    }       
    }
View Full Code Here

            throw e;
        }
        try {
            rowOrientedEdition.commitTrans();
        } catch (DriverException e) {
            throw new FreeingResourcesException("Cannot free resources: data writen in " + temp.getAbsolutePath(), e);
        }
       
        try{
      fileDataSource.getDriver().copy(temp, fileDataSource.getFile());
    } catch (IOException e) {
            throw new FreeingResourcesException("Cannot copy temp file: data writen in " + temp.getAbsolutePath(), e);
    }
    }
View Full Code Here

    public void commitTrans() throws DriverException, FreeingResourcesException {
        driver.write(this);
        try{
            rowOrientedEdition.commitTrans();
        } catch (DriverException e) {
            throw new FreeingResourcesException("Commit successfully done", e);
        }
    }
View Full Code Here

TOP

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

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.