cn.lead2success.ddlutils.platform.db2.Db2v11ModelReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddlutils Show documentation
Show all versions of ddlutils Show documentation
Fork of Apache DdlUtils project without ant support.
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