org.jaxdb.vendor.OracleDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddlx Show documentation
Show all versions of ddlx Show documentation
DDLx is a XML definition of the DDL specification. It is a vendor-agnostic, SQL compliant XSD
used to create SQL Schemas in XML. The DDLx Schema utilizes the power of XML Schema Validation
to provides a cohesive structured model for the creation of SQL Schemas.
/* Copyright (c) 2017 JAX-DB
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* You should have received a copy of The MIT License (MIT) along with this
* program. If not, see .
*/
package org.jaxdb.vendor;
import java.util.List;
import org.jaxdb.www.ddlx_0_4.xLygluGCXAA.$Enum;
public class OracleDialect extends Dialect {
@Override
public DBVendor getVendor() {
return DBVendor.ORACLE;
}
@Override
public String quoteIdentifier(final String identifier) {
return "\"" + identifier + "\"";
}
@Override
public String currentTimeFunction() {
return "(SYSTIMESTAMP - SYSDATE) DAY(9) TO SECOND";
}
@Override
public String currentDateFunction() {
return "SYSDATE";
}
@Override
public String currentDateTimeFunction() {
return "SYSTIMESTAMP";
}
@Override
public boolean allowsUnsignedNumeric() {
return false;
}
@Override
public String declareBoolean() {
return "NUMBER(1)";
}
@Override
public String declareFloat(final boolean unsigned) {
return "FLOAT";
}
@Override
public String declareDouble(final boolean unsigned) {
return "DOUBLE PRECISION";
}
@Override
public String declareDecimal(Short precision, Short scale, final boolean unsigned) {
if (precision == null)
precision = 5;
if (scale == null)
scale = 0;
assertValidDecimal(precision, scale);
return "DECIMAL(" + precision + ", " + scale + ")";
}
// https://docs.oracle.com/cd/B19306_01/olap.102/b14346/dml_datatypes002.htm
@Override
public short decimalMaxPrecision() {
return 38;
}
@Override
Integer decimalMaxScale() {
return null;
}
@Override
String declareInt8(final byte precision, final boolean unsigned) {
return "NUMBER(" + precision + ")";
}
@Override
String declareInt16(final byte precision, final boolean unsigned) {
return "NUMBER(" + precision + ")";
}
@Override
String declareInt32(final byte precision, final boolean unsigned) {
return "NUMBER(" + precision + ")";
}
@Override
String declareInt64(final byte precision, final boolean unsigned) {
return "NUMBER(" + precision + ")";
}
@Override
String declareBinary(final boolean varying, final long length) {
return (length > 2000 ? "LONG RAW" : "RAW") + "(" + length + ")";
}
// http://www.orafaq.com/wiki/RAW
@Override
Integer binaryMaxLength() {
return 2000000000;
}
@Override
String declareBlob(final Long length) {
return "BLOB";
}
// http://docs.oracle.com/javadb/10.6.2.1/ref/rrefblob.html
@Override
Long blobMaxLength() {
return 4294967296L;
}
@Override
String declareChar(final boolean varying, final long length) {
return (varying ? "VARCHAR2" : "CHAR") + "(" + (length == 1 ? 2 : length) + " CHAR)";
}
// http://docs.oracle.com/javadb/10.6.2.1/ref/rrefsqlj41207.html
@Override
Integer charMaxLength() {
return 32672;
}
@Override
String declareClob(final Long length) {
return "CLOB";
}
// http://docs.oracle.com/javadb/10.6.2.1/ref/rrefclob.html
@Override
Long clobMaxLength() {
return 4294967296L;
}
@Override
public String declareDate() {
return "DATE";
}
@Override
public String declareDateTime(final byte precision) {
return "TIMESTAMP(" + precision + ")";
}
@Override
public String declareTime(final byte precision) {
return "INTERVAL DAY(9) TO SECOND(" + precision + ")";
}
@Override
public String declareInterval() {
return "INTERVAL";
}
@Override
public String declareEnum(final $Enum type) {
if (type.getValues$() == null)
return "VARCHAR2(0)";
final List enums = Dialect.parseEnum(type.getValues$().text());
int maxLength = 0;
for (final String value : enums)
maxLength = Math.max(maxLength, value.length());
return "VARCHAR2(" + maxLength + ")";
}
}