Class Jdbc

    • Constructor Detail

      • Jdbc

        public Jdbc()
    • Method Detail

      • getDriver

        public String getDriver()
        The JDBC driver class.
      • setDriver

        public void setDriver​(String value)
        The JDBC driver class.
      • getUrl

        public String getUrl()
        The JDBC connection URL.
      • setUrl

        public void setUrl​(String value)
        The JDBC connection URL.
      • getSchema

        @Deprecated
        public String getSchema()
        Deprecated.
        Use database schema configuration elements instead.
      • setSchema

        @Deprecated
        public void setSchema​(String value)
        Deprecated.
        Use database schema configuration elements instead.
      • getUser

        public String getUser()
        The JDBC connection user. Be sure this user has all required GRANTs to the dictionary views/tables to generate the desired artefacts
      • setUser

        public void setUser​(String value)
        The JDBC connection user. Be sure this user has all required GRANTs to the dictionary views/tables to generate the desired artefacts
      • getUsername

        public String getUsername()
        Just a synonym for "user" to be compatible with other Maven plugins.
      • setUsername

        public void setUsername​(String value)
        Just a synonym for "user" to be compatible with other Maven plugins.
      • getPassword

        public String getPassword()
        The JDBC connection password.
      • setPassword

        public void setPassword​(String value)
        The JDBC connection password.
      • isAutoCommit

        public Boolean isAutoCommit()
        The value of the JDBC autocommit flag. The flag is not set by default, i.e. it keeps the default provided to jOOQ.
        Returns:
        possible object is Boolean
      • setAutoCommit

        public void setAutoCommit​(Boolean value)
        Sets the value of the autoCommit property.
        Parameters:
        value - allowed object is Boolean
      • setProperties

        public void setProperties​(List<Property> properties)
      • withDriver

        public Jdbc withDriver​(String value)
        The JDBC driver class.
      • withUrl

        public Jdbc withUrl​(String value)
        The JDBC connection URL.
      • withSchema

        @Deprecated
        public Jdbc withSchema​(String value)
        Deprecated.
        Use database schema configuration elements instead.
      • withUser

        public Jdbc withUser​(String value)
        The JDBC connection user. Be sure this user has all required GRANTs to the dictionary views/tables to generate the desired artefacts
      • withUsername

        public Jdbc withUsername​(String value)
        Just a synonym for "user" to be compatible with other Maven plugins.
      • withPassword

        public Jdbc withPassword​(String value)
        The JDBC connection password.
      • withAutoCommit

        public Jdbc withAutoCommit​(Boolean value)
      • withProperties

        public Jdbc withProperties​(Property... values)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object