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


Java HsqlProperties.load方法代码示例

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


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

示例1: getPropertiesFromFile

import org.hsqldb.persist.HsqlProperties; //导入方法依赖的package包/类
/**
 * Retrieves a new HsqlProperties object, if possible, loaded from the
 * specified file.
 *
 * @param path the file's path, without the .properties extention
 *      (which is added automatically)
 * @return a new properties object loaded from the specified file
 */
public static HsqlProperties getPropertiesFromFile(String path) {

    if (StringUtil.isEmpty(path)) {
        return null;
    }

    HsqlProperties p = new HsqlProperties(path);

    try {
        p.load();
    } catch (Exception e) {}

    return p;
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:23,代码来源:ServerConfiguration.java

示例2: setUp

import org.hsqldb.persist.HsqlProperties; //导入方法依赖的package包/类
protected void setUp() {

        user     = "sa";
        password = "";

        try {
            sStatement  = null;
            cConnection = null;

            TestSelf.deleteDatabase(filepath);
            HsqlProperties props      = new HsqlProperties(filepath);
            boolean        fileexists = props.checkFileExists();

            if (!network && !fileexists == false) {
                jdbcDataSource dataSource = new jdbcDataSource();

                dataSource.setDatabase(url + filepath);

                cConnection = dataSource.getConnection(user, password);
                sStatement  = cConnection.createStatement();

                sStatement.execute("SET LOGSIZE " + 400);
                sStatement.execute("SET WRITE_DELAY " + writeDelay);
                sStatement.execute("SHUTDOWN");
                cConnection.close();
                props.load();
                props.setProperty("hsqldb.cache_scale", "" + cacheScale);
                props.save();

                cConnection = dataSource.getConnection(user, password);
                sStatement  = cConnection.createStatement();
            }
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("TestSql.setUp() error: " + e.getMessage());
        }
    }
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:38,代码来源:TestAllTypes.java

示例3: setUp

import org.hsqldb.persist.HsqlProperties; //导入方法依赖的package包/类
protected void setUp() {

        user     = "sa";
        password = "";

        try {
            sStatement  = null;
            cConnection = null;

            HsqlProperties props      = new HsqlProperties(filepath);
            boolean        fileexists = props.checkFileExists();

            if (!network && !fileexists == false) {
                jdbcDataSource dataSource = new jdbcDataSource();

                dataSource.setDatabase(url + filepath);

                cConnection = dataSource.getConnection(user, password);
                sStatement  = cConnection.createStatement();

                sStatement.execute("SET SCRIPTFORMAT " + logType);
                sStatement.execute("SET LOGSIZE " + 400);
                sStatement.execute("SET WRITE_DELAY " + writeDelay);
                sStatement.execute("SHUTDOWN");
                cConnection.close();
                props.load();
                props.setProperty("hsqldb.cache_scale", "" + cacheScale);
                props.save();

                cConnection = dataSource.getConnection(user, password);
                sStatement  = cConnection.createStatement();
            }
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("TestSql.setUp() error: " + e.getMessage());
        }
    }
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:38,代码来源:TestAllTypes.java


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