![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| ||||
| ||||
|
|
In Informix ESQL/C, columns can be defined using the same string that's used to describe the field when describing the table. Hence "integer" will work in esql, but not in ecpg. |
|
Informix treats the single and double quote as synonyms in SELECT statements. Thus ... WHERE countries.country_code = "UK" is valid in Informix, but in PostgreSQL needs to be re-written as ... WHERE countries.country_code = 'UK'. The error message for this is not obvious to a programmer brought up on informix, as it refers to a column called "UK" that does not exist. |
|
A SELECT from a NULL field in Informix is trapped using the Informix call "risnull()". Although this function is provided with ecpg, null values were not successfully trapped, and I had to resort to using the PostgreSQL standard indicator variables. I can supply more details on this one on request, as it's C code that probably doesn't belong here. |
|
Generally though, I've been unable to find any documentation on the Informix-compatibility mode. |
![]() |
| Thread Tools | |
| Display Modes | |
| |