We are writing a utility to load data into Informix DB.
Our utility is written in Python and we are using pyodbc package to connect and execute the SQLs.
The select and insert queries are working fine.
However, the sql
"load from input_file delimiter '|' insert into table"
is failing with below error.
pyodbc.ProgrammingError: ('42000', '[42000] [Informix][Informix ODBC Driver][Informix]A syntax error has occurred. (-201) (SQLExecDirectW)')
Whether pyodbc is not supporting "load" command in Informix?
Appreciate the help in advance.
Thanks,