Tabnine Logo
QualifiedSequenceName.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.hibernate.boot.model.relational.QualifiedSequenceName
constructor

Best Java code snippets using org.hibernate.boot.model.relational.QualifiedSequenceName.<init> (Showing top 6 results out of 315)

origin: hibernate/hibernate-orm

public Sequence(
    Identifier catalogName,
    Identifier schemaName,
    Identifier sequenceName,
    int initialValue,
    int incrementSize) {
  this( catalogName, schemaName, sequenceName );
  this.initialValue = initialValue;
  this.incrementSize = incrementSize;
}
origin: hibernate/hibernate-orm

@Override
public SequenceInformation getSequenceInformation(
    Identifier catalogName,
    Identifier schemaName,
    Identifier sequenceName) {
  return getSequenceInformation( new QualifiedSequenceName( catalogName, schemaName, sequenceName ) );
}
origin: hibernate/hibernate-orm

@Override
public SequenceInformation getSequenceInformation(Namespace.Name schemaName, Identifier sequenceName) {
  return getSequenceInformation( new QualifiedSequenceName( schemaName, sequenceName ) );
}
origin: hibernate/hibernate-orm

  @Override
  public SequenceInformation locateSequenceInformation(QualifiedSequenceName sequenceName) {
    // again, follow legacy behavior
    if ( sequenceName.getCatalogName() != null || sequenceName.getSchemaName() != null ) {
      sequenceName = new QualifiedSequenceName( null, null, sequenceName.getSequenceName() );
    }

    return sequenceInformationMap.get( sequenceName );
  }
}
origin: hibernate/hibernate-orm

private void initializeSequences() throws SQLException {
  Iterable<SequenceInformation> itr = jdbcEnvironment.getDialect()
      .getSequenceInformationExtractor()
      .extractMetadata( extractionContext );
  for ( SequenceInformation sequenceInformation : itr ) {
    sequenceInformationMap.put(
        // for now, follow the legacy behavior of storing just the
        // unqualified sequence name.
        new QualifiedSequenceName(
            null,
            null,
            sequenceInformation.getSequenceName().getSequenceName()
        ),
        sequenceInformation
    );
  }
}
origin: hibernate/hibernate-orm

sequenceInformationList.add(
    new SequenceInformationImpl(
        new QualifiedSequenceName(
            identifierHelper.toIdentifier(
              resultSetCatalogName( resultSet )
org.hibernate.boot.model.relationalQualifiedSequenceName<init>

Popular methods of QualifiedSequenceName

  • getSequenceName
  • render
  • getCatalogName
  • getObjectName
  • getSchemaName

Popular in Java

  • Reading from database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • getResourceAsStream (ClassLoader)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top Sublime Text plugins
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