I need to insert the dateOfBirth in a PostgresSQL. The field in the DB is an object.
How can I convert a string in wm.IO to an Object for the DB?
I tried to map the string to the object, but this causes an error in the DB insert.
Error messages / full error message screenshot / log file:
Question related to a free trial, or to a production (customer) instance?
I assume you want to feed a Postgres table column that has the type “date” with the Database connector. If not please share your table definition as well as the name of the connector you’re using.
Here’s how I populate date columns in Postgres:
When creating the custom insert or update action, I make sure to activate the “Convert selected to String” option. Here you can see I have a date column in my table.