Class Dialect

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected Dialect()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void registerColumnType​(int code, int capacity, java.lang.String name)
      Subclasses register a type name for the given type code and maximum column length.
      protected void registerColumnType​(int code, java.lang.String name)
      Subclasses register a type name for the given type code.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Dialect

        protected Dialect()
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • registerColumnType

        protected void registerColumnType​(int code,
                                          int capacity,
                                          java.lang.String name)
        Subclasses register a type name for the given type code and maximum column length. $l in the type name with be replaced by the column length (if appropriate).
        Parameters:
        code - The Types typecode
        capacity - The maximum length of database type
        name - The database type name
      • registerColumnType

        protected void registerColumnType​(int code,
                                          java.lang.String name)
        Subclasses register a type name for the given type code. $l in the type name with be replaced by the column length (if appropriate).
        Parameters:
        code - The Types typecode
        name - The database type name