congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AuxiliaryDatabaseObject
Code IndexAdd Tabnine to your IDE (free)

How to use
AuxiliaryDatabaseObject
in
org.hibernate.boot.model.relational

Best Java code snippets using org.hibernate.boot.model.relational.AuxiliaryDatabaseObject (Showing top 8 results out of 315)

origin: hibernate/hibernate-orm

@Override
public String[] sqlCreateStrings(Dialect dialect) throws HibernateException {
  // delegate to auxiliary object
  return sequenceObject.sqlCreateStrings( dialect );
}
origin: hibernate/hibernate-orm

@Override
public String[] sqlDropStrings(Dialect dialect) throws HibernateException {
  // delegate to auxiliary object
  return sequenceObject.sqlDropStrings( dialect );
}
origin: hibernate/hibernate-orm

public void addAuxiliaryDatabaseObject(AuxiliaryDatabaseObject auxiliaryDatabaseObject) {
  auxiliaryDatabaseObjects.put( auxiliaryDatabaseObject.getExportIdentifier(), auxiliaryDatabaseObject );
}
origin: hibernate/hibernate-orm

if ( auxiliaryDatabaseObject.appliesToDialect( dialect ) ) {
  applySqlStrings(
      true,
if ( !auxiliaryDatabaseObject.beforeTablesOnCreation() && auxiliaryDatabaseObject.appliesToDialect( dialect ) ) {
  applySqlStrings(
      true,
      auxiliaryDatabaseObject.sqlCreateStrings( dialect ),
      formatter,
      options,
if ( auxiliaryDatabaseObject.beforeTablesOnCreation() && auxiliaryDatabaseObject.appliesToDialect( dialect )) {
  applySqlStrings(
      true,
      auxiliaryDatabaseObject.sqlCreateStrings( dialect ),
      formatter,
      options,
origin: hibernate/hibernate-orm

if ( !auxiliaryDatabaseObject.beforeTablesOnCreation() ) {
  continue;
if ( !auxiliaryDatabaseObject.appliesToDialect( dialect ) ) {
  continue;
if ( auxiliaryDatabaseObject.beforeTablesOnCreation() ) {
  continue;
if ( !auxiliaryDatabaseObject.appliesToDialect( dialect ) ) {
  continue;
    auxiliaryDatabaseObject.sqlDropStrings( jdbcEnvironment.getDialect() ),
    formatter,
    options,
origin: hibernate/hibernate-orm

if ( !auxiliaryDatabaseObject.beforeTablesOnCreation() ) {
  continue;
if ( auxiliaryDatabaseObject.appliesToDialect( dialect ) ) {
  checkExportIdentifier( auxiliaryDatabaseObject, exportIdentifiers );
  applySqlStrings(
if ( auxiliaryDatabaseObject.appliesToDialect( dialect )
    && !auxiliaryDatabaseObject.beforeTablesOnCreation() ) {
  checkExportIdentifier( auxiliaryDatabaseObject, exportIdentifiers );
  applySqlStrings(
origin: hibernate/hibernate-orm

  @Override
  public String[] getSqlDropStrings(AuxiliaryDatabaseObject object, Metadata metadata) {
    return object.sqlDropStrings( dialect );
  }
}
origin: hibernate/hibernate-orm

@Override
public String[] getSqlCreateStrings(AuxiliaryDatabaseObject object, Metadata metadata) {
  return object.sqlCreateStrings( dialect );
}
org.hibernate.boot.model.relationalAuxiliaryDatabaseObject

Javadoc

Auxiliary database objects (i.e., triggers, stored procedures, etc) defined in the mappings. Allows Hibernate to manage their lifecycle as part of creating/dropping the schema.

Most used methods

  • sqlCreateStrings
    Gets the SQL strings for creating the database object.
  • sqlDropStrings
    Gets the SQL strings for dropping the database object.
  • appliesToDialect
    Does this database object apply to the given dialect?
  • beforeTablesOnCreation
    Defines a simple precedence. Should creation of this auxiliary object happen before creation of tabl
  • getExportIdentifier

Popular in Java

  • Reading from database using SQL prepared statement
  • putExtra (Intent)
  • setScale (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Notification (javax.management)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now