0
votes
1answer
22 views

How to detect ODBC DB2 connection encoding (code page)

Is it possible to check which db2 code page is used in communication between ODBC connector and db2 database from c program using ODBC api?
0
votes
0answers
637 views

SQLExecute( ) Fails with SQLSTATE=42601, SQL Error -104

[Resolved] I am trying to learn ODBC/CLI Programming so please bear with me if this appears silly, but I am not able to resolve an apparently simple issue. I have posted the relevant portions of the ...
1
vote
0answers
105 views

DB2 via ODBC memory management issues

I'm developing software that uses DB2 database via ODBC (unixodbc). The issue is that running test suite with valgrind produces massive amount of errors. Let alone one connect and disconnect generates ...
0
votes
1answer
199 views

Embedded SQL in C program using db2

I have a program in c that prompts the user to enter a product manufacturer and should make a query based on the users input to print all of the products that that manufacturer makes, whether they ...
0
votes
1answer
500 views

DB2 Stored Procedure returning Multiple rows of a Cursor in C Program

I want to write a Stored Procedure in DB2 which will have a curosor for a table and then it will send the whole cursor rows to a C program? Can anyone help me?
0
votes
1answer
194 views

DB2 user defined functions and custom schema

I create a custom schema in my DB2 database using the following command: db2 create schema MYSCHEMA authorization db2user (db2user is the OS user) Then through my application I install some ...
0
votes
1answer
212 views

Building UDF on DB2

what should i download and install in order to run User Defined Functions on DB2 ? currently i've installed Control Center and I'm dealing with a problem finding sqludf.h & bldrtn files in order ...
2
votes
6answers
106 views

Is the order of variables defined by the standard?

See the following: static char start_marker; static int var_1; static int var_2; /* ... */ static int var_n; static char end_marker; I want to initialize all variables in the section. Is the ...
1
vote
2answers
1k views

How to get rid of label used but not defined

I'm trying to print the rows of a table in embedded sql. I have this code where publication is the table and pubid is the attribute. I tried this: EXEC SQL DECLARE C1 CURSOR FOR SELECT pubid ...
1
vote
1answer
532 views

DB2 Transaction Logs

How do I read the Transaction Logs of DB2 in iSeries / AS/400. Are there any C or C++ or Java APIs? Any help is appreciated.
1
vote
2answers
658 views

Connecting to DB2 from USS on z/OS mainframe

I am writing a C program in Unix System Services on a z/OS mainframe. One of the requirements is to get a sequence number from a DB2 database residing on the same mainframe. Not having DB2 Connect ...
0
votes
1answer
126 views

Migrating DB2 UDFs from AIX to Linux (RHEL)

I successfully compiled some UDFs on 64-bit Linux that were originally compiled on AIX Linux is running IBM DB2 v9.5 Here's the function that sometimes returns for some values #include ...
1
vote
1answer
123 views

Is this possible to call c/c++ application from DB2 stored procedure/trigger?

Is this possible to call c/c++ application from DB2 stored procedure/trigger? If yes, what would be general steps doing it? Any pointers to web resources on the subject? Thanks!
2
votes
2answers
987 views

C / C++ program connecting to 32-bit DB2 and 64-bit DB2 simultaneously

Is it possible to successfully author a C / C++ program in *IX operating systems that operates on both 32-bit and 64-bit DB2 implementations simultaneously? The exact requirement is to read from a ...
2
votes
3answers
642 views

embedded sql in C

I've been attempting to write embedded SQL statements for DB2 that ultimately gets compiled in C. I couldn't find a tutorial or manual on the embedded SQL syntax for C for reference. One case I ...