Tagged Questions
-1
votes
1answer
63 views
Form database query from input
In my C program I am receiving input which is of the form
"name,age,salary|Richard,35,10000"
Now I want to frame insert and update queries from this input.
I am using strtok_r and strtok for ...
3
votes
4answers
186 views
What is 12345 >> 2 Really Doing arithmetically?
My question is in the following example what does val = val >> 2; do? That is I believe it is division by 4.
int val = 12345678;
val = val >> 2;
Here is the background to this question.
...
1
vote
1answer
90 views
1
vote
1answer
96 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 ...
3
votes
2answers
92 views
How to provide values dynamically in “using” in informix esql?
Our .ec program uses the query:
select count(*) from where col >= val1 and col <= val2
Inside the program we use
select count(*) from where col >= ? and col <= ?
Now, the new ...
1
vote
3answers
396 views
The same error is detected in stored **procedure**, but not in stored **function**
This question is related to my previous one: RaiseError (PERL, DBI) equivalent for unixODBC C API ?
As I isolated the problem later, I'll post new question, that is more specific, isolated and ...
2
votes
2answers
660 views
Core dump on BLOB insert in informix via ODBC
Connecting to version 11.50 version of IDS with transaction logging turned on:
onstat -version
Program Name: onstat
Build Version: 11.50.UC5XE
Build Number: N104
Build Host: ku
Build OS: ...
1
vote
6answers
493 views
Handling huge numbers C, Java, Informix
We are in a situation to handle numbers with a maximum of 15 digits. We need to parse this value from a text file, through C, store it in Informix table. There is another Java component that reads ...
1
vote
1answer
123 views
Explanation about a code fragment
I see the following code fragment in a legacy application that accesses Informix through C. Can anyone explain what the SQL in the code is trying to achieve? Thanks.
EXEC SQL BEGIN DECLARE SECTION;
...
2
votes
3answers
1k views
Informix to Oracle: Dealing with Fetching Null Values
A bit of background first. My company is evaluating whether or not we will migrate our Informix database to Oracle 10g. We have several ESQL/C programs. I've run some through the Oracle Migration ...