Module org.jooq

Class CUBRIDDSL

    • Constructor Detail

      • CUBRIDDSL

        protected CUBRIDDSL()
        No instances
    • Method Detail

      • incr

        public static <T> Field<T> incr​(Field<T> field)
        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)
        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