Module org.jooq

Class CUBRIDDSL

java.lang.Object
org.jooq.impl.DSL
org.jooq.util.cubrid.CUBRIDDSL

@Deprecated(forRemoval=true, since="3.13") public class CUBRIDDSL extends DSL
Deprecated, for removal: This API element is subject to removal in a future version.
- 3.13.0 - [#9403] - 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 Details

    • CUBRIDDSL

      protected CUBRIDDSL()
      Deprecated, for removal: This API element is subject to removal in a future version.
      No instances
  • Method Details

    • incr

      public static <T> Field<T> incr(Field<T> field)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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, for removal: This API element is subject to removal in a future version.
      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