本文整理汇总了Java中org.hsqldb.persist.HsqlDatabaseProperties.isIntegral方法的典型用法代码示例。如果您正苦于以下问题:Java HsqlDatabaseProperties.isIntegral方法的具体用法?Java HsqlDatabaseProperties.isIntegral怎么用?Java HsqlDatabaseProperties.isIntegral使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hsqldb.persist.HsqlDatabaseProperties
的用法示例。
在下文中一共展示了HsqlDatabaseProperties.isIntegral方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: compileSetProperty
import org.hsqldb.persist.HsqlDatabaseProperties; //导入方法依赖的package包/类
private Statement compileSetProperty() {
read();
String property;
Object value;
HsqlDatabaseProperties props;
checkIsSimpleName();
checkIsDelimitedIdentifier();
property = token.tokenString;
props = database.getProperties();
boolean isboolean = props.isBoolean(token.tokenString);
boolean isintegral = props.isIntegral(token.tokenString);
boolean isstring = props.isString(token.tokenString);
if (!(isboolean || isintegral || isstring)) {
throw Error.error(ErrorCode.X_42511);
}
int typeCode = isboolean ? Types.SQL_BOOLEAN
: isintegral ? Types.SQL_INTEGER
: Types.SQL_CHAR;
read();
if (token.tokenType == Tokens.TRUE) {
value = Boolean.TRUE;
} else if (token.tokenType == Tokens.FALSE) {
value = Boolean.FALSE;
} else {
checkIsValue();
value = token.tokenValue;
if (token.dataType.typeCode != typeCode) {
throw Error.error(ErrorCode.X_42565, token.tokenString);
}
}
read();
Object[] args = new Object[] {
property, value
};
return new StatementCommand(StatementTypes.SET_DATABASE_PROPERTY,
args, null, null);
}