sqlTableExists(String catalog, String schemaName) If the dialect support a special query to check if a table exists, the actual
sql that is used to perform it.
supportsIfExistsAfterTableName() Does the database support "if exists" after the table name when constructing
a sql drop for the table.
public boolean
supportsIfExistsBeforeTableName() Does the database support "if exists" before the table name when constructing
a sql drop for the table.
public boolean
supportsTableExists() Does the dialect support a special query to check if a table exists.
public boolean
useExistsBeforeInsertLock() Do we need to perform a special check to see if the lock already exists in the database, or should
we try and insert it without checking.
public boolean
useInputStreamToInsertBlob() Does the database require using an InputStream to insert a blob,
or the setBlob method.
If the dialect support a special query to check if a table exists, the actual
sql that is used to perform it. Defaults to throw an Unsupported excetion (see
Dialect.supportsTableExists() .
supportTransactionalScopedBlobs
public boolean supportTransactionalScopedBlobs()(Code)
Do we need to perform a special check to see if the lock already exists in the database, or should
we try and insert it without checking. Defaults to true.