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

cn.lead2success.ddlutils.platform.db2.Db2v11ModelReader Maven / Gradle / Ivy

There is a newer version: 1.0.0_21071202
Show newest version
package cn.lead2success.ddlutils.platform.db2;

import cn.lead2success.ddlutils.Platform;

import java.util.regex.Pattern;

/**
 * Reads a database model from a Db2 UDB database.
 *
 * @version $Revision: $
 */
public class Db2v11ModelReader extends Db2ModelReader
{

	/**
     * Creates a new model reader for Db2 databases.
     * 
     * @param platform The platform that this model reader belongs to
     */
    public Db2v11ModelReader(Platform platform)
    {
        super(platform);
        setSearchStringPattern(Pattern.compile("[%]"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy