Class H2V2SequenceSupport

    • Constructor Detail

      • H2V2SequenceSupport

        public H2V2SequenceSupport()
    • Method Detail

      • getDropSequenceString

        public String getDropSequenceString​(String sequenceName)
        Description copied from interface: SequenceSupport
        Typically dialects which support sequences can drop a sequence with a single command. This is convenience form of SequenceSupport.getDropSequenceStrings(java.lang.String) to help facilitate that.

        Dialects which support sequences and can drop a sequence in a single command need *only* override this method. Dialects which support sequences but require multiple commands to drop a sequence should instead override SequenceSupport.getDropSequenceStrings(java.lang.String).

        Parameters:
        sequenceName - The name of the sequence
        Returns:
        The sequence drop commands