Module org.jooq

Class CUBRIDDSL


  • @Deprecated
    public class CUBRIDDSL
    extends DSL
    Deprecated.
    - [#9403] - 3.13.0 - This dialect is hardly used by anyone with jOOQ or without jOOQ and will be removed in the near future.
    The SQLDialect.CUBRID specific DSL.
    Author:
    Lukas Eder
    • Constructor Detail

      • CUBRIDDSL

        protected CUBRIDDSL()
        Deprecated.
        No instances
    • Method Detail

      • incr

        public static <T> Field<T> incr​(Field<T> field)
        Deprecated.
        Use the CUBRID-specific INCR() function.

        This function can be used to increment a field value in a SELECT statement as such:

         SELECT article, INCR(read_count)
         FROM article_table
         WHERE article_id = 130,987
      • decr

        public static <T> Field<T> decr​(Field<T> field)
        Deprecated.
        Use the CUBRID-specific DECR() function.

        This function can be used to increment a field value in a SELECT statement as such:

         SELECT article, DECR(read_count)
         FROM article_table
         WHERE article_id = 130,987