
org.fastnate.generator.dialect.H2Dialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastnate-generator Show documentation
Show all versions of fastnate-generator Show documentation
The Fastnate Offline SQL Generator
The newest version!
package org.fastnate.generator.dialect;
/**
* Handles H2 specific conversions.
*
* @see H2 - SQL Grammar
* @author Tobias Liefke
*/
public class H2Dialect extends GeneratorDialect {
@Override
public String createBlobExpression(final byte[] blob) {
return createHexBlobExpression("'", blob, "'");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy