de.jaggl.sqlbuilder.dialect.MySqlDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder-core Show documentation
Show all versions of sqlbuilder-core Show documentation
A Java-Library to build SQL-Statements
package de.jaggl.sqlbuilder.dialect;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
public class MySqlDialect extends DefaultDialect
{
private static final MySqlDialect instance;
static
{
instance = new MySqlDialect();
Dialect.register(instance);
}
private MySqlDialect()
{
// private constructor to hide the public one
}
@Override
public String getName()
{
return "MySQL";
}
public static MySqlDialect getInstance()
{
return instance;
}
}