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

org.eclipse.persistence.platform.database.DB2ZPlatform Maven / Gradle / Ivy

There is a newer version: 5.0.0-B02
Show newest version
/*******************************************************************************
 * Copyright (c) 2015 IBM Corporation. All rights reserved.
 * This program and the accompanying materials are made available under the 
 * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 
 * which accompanies this distribution. 
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at 
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *     03/19/2015 - Rick Curtis
 *       - 462586 : Add national character support for z/OS.
 *****************************************************************************/
package org.eclipse.persistence.platform.database;

import java.util.Hashtable;

import org.eclipse.persistence.internal.databaseaccess.FieldTypeDefinition;

/**
 * Purpose: Provides DB2 z/OS specific behavior.
 * 

* This provides for some additional compatibility in certain DB2 versions. *

* Responsibilities: *

    *
  • Support creating tables that handle multibyte characters *
*/ public class DB2ZPlatform extends DB2Platform { @Override protected Hashtable buildFieldTypes() { Hashtable, Object> res = super.buildFieldTypes(); if (getUseNationalCharacterVaryingTypeForString()) { res.put(String.class, new FieldTypeDefinition("VARCHAR", DEFAULT_VARCHAR_SIZE)); } return res; } @Override public String getTableCreationSuffix() { // If we're on Z and using unicode support we need to append CCSID // UNICODE on the table rather than FOR MIXED DATA on each column if (getUseNationalCharacterVaryingTypeForString()) { return " CCSID UNICODE"; } return super.getTableCreationSuffix(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy