All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jaxdb.vendor.DB2Dialect Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.6.0
Show newest version
/* 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 org.jaxdb.www.ddlx_0_4.xLygluGCXAA.$Enum;

public class DB2Dialect extends Dialect {
  @Override
  public DBVendor getVendor() {
    return DBVendor.DB2;
  }

  @Override
  public String quoteIdentifier(final String identifier) {
    return "\"" + identifier + "\"";
  }

  @Override
  public String currentTimeFunction() {
    return "CURRENT TIME";
  }

  @Override
  public String currentDateFunction() {
    return "CURRENT DATE";
  }

  @Override
  public String currentDateTimeFunction() {
    return "CURRENT TIMESTAMP";
  }

  @Override
  public boolean allowsUnsignedNumeric() {
    return false;
  }

  @Override
  public String declareBoolean() {
    return "BOOLEAN";
  }

  @Override
  public String declareFloat(final boolean unsigned) {
    return "FLOAT";
  }

  @Override
  public String declareDouble(final boolean unsigned) {
    return "DOUBLE";
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPGG_9.7.0/com.ibm.db2.luw.sql.ref.doc/doc/r0000791.html
  @Override
  public String declareDecimal(Short precision, Short scale, final boolean unsigned) {
    if (precision == null)
      precision = 31;

    if (scale == null)
      scale = 0;

    assertValidDecimal(precision, scale);
    return "DECIMAL(" + precision + ", " + scale + ")";
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPEK_11.0.0/intro/src/tpc/db2z_numericdatatypes.html
  @Override
  public short decimalMaxPrecision() {
    return 31;
  }

  @Override
  Integer decimalMaxScale() {
    return null;
  }

  @Override
  String declareInt8(final byte precision, final boolean unsigned) {
    throw new UnsupportedOperationException();
  }

  @Override
  String declareInt16(final byte precision, final boolean unsigned) {
    throw new UnsupportedOperationException();
  }

  @Override
  String declareInt32(final byte precision, final boolean unsigned) {
    throw new UnsupportedOperationException();
  }

  @Override
  String declareInt64(final byte precision, final boolean unsigned) {
    throw new UnsupportedOperationException();
  }

  @Override
  String declareBinary(final boolean varying, final long length) {
    return "VARBINARY" + "(" + length + ")";
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPEK_10.0.0/sqlref/src/tpc/db2z_bif_varbinary.html
  @Override
  Integer binaryMaxLength() {
    return 32704;
  }

  @Override
  String declareBlob(final Long length) {
    return "BLOB" + (length != null ? "(" + length + ")" : "");
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPGG_9.7.0/com.ibm.db2.luw.sql.ref.doc/doc/r0001029.html
  @Override
  Long blobMaxLength() {
    return 2147483647L;
  }

  @Override
  String declareChar(final boolean varying, final long length) {
    return varying && length <= 255 ? "CHAR(" + length + ")" : "VARCHAR(" + length + ")";
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPEK_11.0.0/intro/src/tpc/db2z_stringdatatypes.html
  @Override
  Integer charMaxLength() {
    return 32704;
  }

  @Override
  String declareClob(final Long length) {
    return "CLOB" + (length != null ? "(" + length + ")" : "");
  }

  // https://www.ibm.com/support/knowledgecenter/en/SSEPGG_9.7.0/com.ibm.db2.luw.sql.ref.doc/doc/r0001029.html
  @Override
  Long clobMaxLength() {
    return 2147483647L;
  }

  @Override
  public String declareDate() {
    throw new UnsupportedOperationException();
  }

  @Override
  public String declareDateTime(final byte precision) {
    throw new UnsupportedOperationException();
  }

  @Override
  public String declareTime(final byte precision) {
    throw new UnsupportedOperationException();
  }

  @Override
  public String declareInterval() {
    throw new UnsupportedOperationException();
  }

  @Override
  public String declareEnum(final $Enum type) {
    throw new UnsupportedOperationException();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy