Expression data types - Connect_CDC - connect_cdc_mimix_share - 6.x

Connect CDC Getting Started Guide

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (MIMIX Share)
Version
6.x
Language
English
Product name
Connect CDC
Title
Connect CDC Getting Started Guide
Copyright
2024
First publish date
2003
Last updated
2024-10-15
Published on
2024-10-15T20:38:41.117981

You can specify one of the following datatype categories:

  • BOOLEAN: returns a true or false indicator.

  • CHAR or CHARACTER: use for character and varchar strings. No length needs to be specified. Internally, a Java String is generated.

  • DEC or DECIMAL: use for fixed point numbers, numbers with precision and scale (although it can be specified with just precision). Internally, a Java BigDecimal is generated.

  • DOUBLE: use for all float, double, or real datatypes. Internally, a Java double is generated.

  • INT or INTEGER: use for all integer types (smallint, int, and long). Internally, a Java long is generated.

Note: Dates, times, and timestamps are handled as strings and are not supported as explicit types. For transformation required for these types, you can use the Date format predefined methods.