Column Type | Accepted types |
---|
UUID | uuid.UUID objects or a string as expected by java.util.UUID.fromString |
Alpha / Alpha, E-mail / Alpha, gross / Alpha, phone number / Clob | Everything that can be converted to text |
Ja/No | Everything that can be converted to bool |
Date | datetime.datetime objects or a string in the format dd.mm.YYYY |
Time | datetime.datetime objects or a string in the format HH:MM |
Number without DP, up to 4/9 digits | Everything that can be converted to int. Strings like '5.32' as well as '5,32' are both accepted |
Currency / number with DP | Everything that can be converted to float. Strings like '5.32' as well as '5,32' are both accepted |