Hi, I use informix 9.4.
I use a file named file.data to insert data in my table myDBTable.
My file is non positional and the colomn delimiter is a '|' character.
Here is my current source code:
File file.data delimiter '|' 3;
Insert into myDBTable ( field1, field2, fieldMoney)
Values (f01, f02, f03);
I would like to have my 'fieldMoney' column f03, which is set to NOT NULL and of type money, having a '0' when I add nothing into it. For the moment, I am having an error because it converts my blank into null and cannot insert it.
I am new to this forum, hope it is working well. I greatly thank you for your help.