Tagged Questions
2
votes
1answer
718 views
Convert float to decimal in Informix
I have a table with a column of type decimal. There is a ESQL/C structure that represents the table. It has a member of type decimal. I also have a normal C structure for equivalent for the same ...
1
vote
1answer
60 views
Informix “SERIAL” to Oracle NUMBER/Sequence/Trigger in Pro*C
I'm trying to convert some Informix ESQL to Oracle Pro*C. In the existing Informix code the "SERIAL" data type was used to indicate automatically incrementing columns. According to the Oracle ...
1
vote
1answer
307 views
“FOR UPDATE” clause is throwing error in esql program
We are developing a migrate program. There are nearly 80 million records are there in DB. The code is as follows:
static int mymigration(struct progargs *args)
{
exec sql begin declare section;
...
0
votes
1answer
72 views
Which is faster “where col = ? or col = ? or col = ?” OR “where col in (?, ?, ?)” in C with informix (.ec/esql)?
Our code is written in C and DB is Informix.
We are doing some code optimization in ESQL program and found the following query:
UPDATE [TABLE] SET [PRIMARY KEY COLUMN] = [NEW KEY] WHERE COL = ? OR ...
0
votes
1answer
59 views
How to select 32 or 64 bit Informix Csdk 3.7?
My developer machine is a Windows 7 64bit and have some programs on 32 an others on 64 bits
since the upgrade of the 3.70FC3 and 3.70TC3, I'm having problems compiling with VisualStudio 2010 sp1.
...
0
votes
1answer
136 views
Informix Dynamic Server / ESQL question - TEXT Update versus TEXT insert
I maintain a 3rd party Informix driver that's written with ESQL-style (Informix API) calls. I'm working on a bug where, for TEXT fields, INSERTs work fine and UPDATEs fail. Stepping through the ...
0
votes
2answers
288 views
Blanks causing problem while fetching rows (Informix)
The always interesting issue of NULL Vs Blank is driving me bit crazy now.
I have two ESQL/C structures that represent two tables. I'm fetching a row from
one table in a cursor. Using the values of ...
0
votes
2answers
385 views
How to configure cmake to compile informix *.ec files?
I'm just found cmake and I want to use it to create make files for a little project that uses the esql compiler.