1
vote
0answers
32 views

ORA-24811:While writing into a LOB, less data was provided than indicated

When ever I run my Pro*C code which insert a large buffer to table using CLOB. ORA-24811:While writing into a LOB, less data was provided than indicated. code is below OCIClobLocator *lob; ... ...
0
votes
1answer
137 views

Insert blank blob data in oracle using c

I am trying to insert blank data in blob column of table using C program in oracle database but it is inserting as Null, How to make it blank instead of null.data type is lpBlob.
0
votes
0answers
37 views

Reading from database openMP in c

I am reading from a database using OCI and I am wondering if there is a faster version in openMP. My strategy reads first lets say 1000 tuples from the database and processes them: buffer_size = 0; ...
3
votes
1answer
171 views

How to display SQL statement including host variable values in Oracle Pro*C?

In Pro*C code you can get the last executed SQL statement via sqlgls() (or even SQLStmtGetText()). This is useful for logging purposes - especially for dynamic statements. But the SQL statement ...
0
votes
1answer
47 views

XML validation fails on Oracle for empty (string) element

Validation of my XML document fails on Oracle (via oraxsd c library), but succeeds in other tools. Oracle validation error: LSX-00009: data missing for type "#simple" LSX-00213: only 0 occurrences ...
-2
votes
1answer
77 views

generating dynamic sql in c [closed]

I have to generate a c program that can generate a dynamic update sql and execute it. The table name, no of columns to be updated and columns in where clause are known only during run time.So i split ...
0
votes
1answer
53 views

error LNK2001: unresolved reference with Pro*C code with Visual C++

I'm getting an error when trying to build a DLL file with a C file preprocessed with Pro*C, the command I'm using to build my dll is: link /NOLOGO /DLL /SUBSYSTEM:WINDOWS /NODEFAULTLIB:libc.lib ...
1
vote
0answers
24 views

How to pre process Pro*C files in cmake? [duplicate]

Possible Duplicate: How to compile additional source files in cmake after the build process I need to preprocess a proc file (Pro*C oracle) to generate a C file and then compile it along ...
0
votes
1answer
75 views

How to compile additional source files in cmake after the build process

I have a project in cmake for windows which contains a Pro*C source file called database.proc, my goal is to generate a C source file from the .proc file and add it to the project to be linked along ...
0
votes
1answer
182 views

oracle database connectivity using c language

I would like to connect to the an Oracle database using c language. For that I use the oOacle precompiler and my os is ubuntu 11.04. My code is #include<stdlib.h> #include ...
0
votes
1answer
91 views

How can I login oracle as sys account using oci or anyother libs

I am try to make a tool to help create user and imp database after oracle database installed. Because it is too difficult for my colleagues to deployment a new database by typeing commands. Then i ...
1
vote
1answer
324 views

How to know whether SQL is successfully executed when programming using Pro*C?

I recently programme using Pro*C to access Oracle database like this: cmd[128]; dpc_set_sqlca(&sqlca); strcpy(cmd,"EXECUTE IMMEDIATE"); dpc_exec_immediate(sql_string); SQLCODE = sqlca.sqlcode; ...
0
votes
1answer
193 views

How to open and load oracle fmb file with C/C++? [closed]

I need to know is there any way to open and analyze an oracle form module (fmb file format) in C/C++ and get a list of all used tables, views, blocks,... in that module file. give me a sample please, ...
0
votes
1answer
157 views

EXEC SQL LOB WRITE APPEND vs polling (WRITE FIRST, WRITE NEXT, WRITE LAST)

First time approaching LOB's in Oracle DB and stumbled upon something that left me puzzled. I have to insert a BLOB into a column of a row that I'm inserting into a table, with Pro*C. The ...
0
votes
0answers
259 views

KPEDBG_HDL_POP_FCPTR Multithreaded application error

I have a multithreaded application that get killed on AIX machine with fillowing message: KPEDBG_HDL_POP_FCPTR From google I got this information "This exception is the occi multithreaded access ...
0
votes
2answers
72 views

I need a program to store the database script for oracle [closed]

We are developing a project that has 3 enviroments (development, test, production) So there are 3 databases (actually more than 3, because we have 5 customers so we have more than 10 databases) and ...
1
vote
1answer
357 views

How can we remove SQL error code 1405 in C

I have written following piece of code in C: EXEC SQL begin declare section; int A; char B[5]; int C; int D; dtime_t E; char F[13]; EXEC SQL END DECLARE ...
1
vote
2answers
283 views

How to make a makefile for Oracle on Solaris/Linux Server?

I have an application which is running properly for Informix database. But now I want it to compile it for Oracle too. What changes should be made in the makefile shown below which is running properly ...
0
votes
1answer
131 views

OCIStmtPrepare returns always OCI_INVALID_HANDLE

When trying to execute a statement on Oracle RDBMS I always get OCI_INVALID_HANDLE as status (checked with gdb) and the statement therefore is not executed. May someone could help to get this ...
0
votes
0answers
18 views

Can OCIExtractToInt be used to get parameters from query?

I wonder if the C-Functions OCIExtractToInt and other OCIExtractToXXX provided by OCI could be used to extract data from statements? And if so how this could work? Sadly I could not find any example ...
1
vote
2answers
295 views

Passing an argument to an Oracle Stored Procedure

This may have been asked before, so I'm sorry if this is repeated. If you can link to where I can find an answer, I would really appreciate it. I've looked around at other answers and on Google but ...
0
votes
1answer
106 views

How does Oracle Proc find C header files?

I have a #include <stdio.h> in one of my *.pc files. And this stdio.h includes libio.h. I'm getting a syntax error on the libio.h. I wonder how Oracle proc knows, where to find those stdio.h ...
0
votes
2answers
859 views

PCC-F-02102, Fatal error while doing C preprocessing AIX 5.3

Oracle version - 10.2.0.1.0 Pro*C/C++: Release 10.2.0.1.0 AIX version - 5.3 I cannot compile with the following errors. Syntax error at line 135, column 2, file /usr/include/standards.h: Error at ...
1
vote
2answers
199 views

Compiler Error E2451 Undefined Symbol 'EXEC' in function main()

Here is a sample of a program that I got from the website: http://www.csee.umbc.edu/portal/help/oracle8/server.815/a68022/sql.htm: #include <stdio.h> /* declare host variables */ char ...
0
votes
1answer
65 views

How to communicate with Oracle eBusiness suite from c/c++

Please tell me if there is any sdk through which I can communicate Oracle eBusiness suite from c or cpp. I know OCCI is for interacting with Oracle DB, i am looking a way to interact with Oracle ...
0
votes
1answer
201 views

For using SQL in C which header files we need to include in the program?

In my C program I have to make a connection to a database where I am using these statements: EXEC SQL INCLUDE sqlca; EXEC SQL begin declare section; EXEC SQL end declare section; But I am getting ...
0
votes
1answer
1k views

Oracle Pro*C updating table with cursor failed

I have a table like this: CREATE TABLE book_info ( book_id VARCHAR(32) not null, title varchar(255) not null, author ...
0
votes
1answer
200 views

connect oracle using ocilib with hostname specified

How to connect Oracle using OCILIB with hostname and port number configured. It by default takes localhost as hostname. I also checked in the OCI_ConnectionCreate function, but it doesn't asks for ...
0
votes
2answers
577 views

Oracle Pro*C : Handling end of fetch cursor

I can't figure out the problem on my code : /* Declare a cursor for the FETCH statement. */ EXEC SQL DECLARE customer_cursor CURSOR FOR SELECT CUSTOMER_ID, CUSTOMER_NAME FROM CUSTOMER_TABLE WHERE ...
4
votes
1answer
182 views

Is there a more intelligent sql-preprocessor for Oracle than Pro*C/C++?

Does someone know if there is preprocessor for c/c++ in conjunction with Oracle that would allow me to write c or c++ code similar to void populateTableList(GuiList* tableList) { for users in ...
0
votes
1answer
94 views

How to obtain the statement type OCI_ATTR_SQLFNCODE *before* OCIStatementExecute()?

I need to know how to obtain the statement type of a prepared statement handle in OCI. The dilemna is as follows. The fourth argument of OCIStmtExecute() - iters - cannot be 0 if the statement is ...
3
votes
2answers
2k views

Oracle data types: advice on choosing NUMBER versus BINARY DOUBLE?

I'm generating a scientific application that performs a lot of number crunching in Java and C, and accuracy is critical. There is no number crunching done inside the Oracle database (it's merely used ...
0
votes
1answer
95 views

Copy varchar into text datatype

Whats the best way to copy the contents of varchar datatype into text datatype when mixing pro *c and OCI. #include <stdio.h> #include <string.h> #include <stdlib.h> #include ...
0
votes
1answer
1k views

OCI_INVALID_HANDLE - Invalid service context, connection or statement handle

I make some calls from C through OCI to an Oracle database. I get this error: OCI_INVALID_HANDLE - Invalid service context, connection or statement handle I inherited this code: ...
0
votes
1answer
278 views

ORA-01008: not all variables bound (in C w OCI)

I have the following C code which uses a stored procedure to insert 2 strings into the database: char query[1024]; memset(query, 0, sizeof(query)); sprintf(query, "BEGIN bns_saa_message_insert (:1, ...
2
votes
2answers
228 views

how can C communicate with Oracle database?

Newbie question here: I'm using ANSI C on server to crunch numbers for a web application. The C function needs to load data from an Oracle database, process it, and save it back to the database. Is ...
2
votes
2answers
346 views

Pro*C passing array of parameters

I am trying to write Pro*C/C/C++ code to handle a query like this: SELECT col1, col2, col3, col4 FROM table WHERE param IN(<set of values>); I can have a C struct to retrieve the result and ...
1
vote
3answers
270 views

Pro*C performance differences

I am running in the following scenario which gives me quite a bit of headaches as I can't find an exact explanation for the behavior I am seeing. I have the following declared: struct test_struct { ...
1
vote
0answers
483 views

CYGWIN + ORA*C = PCC-F-NOERRFILE, unable to open error message file, facility PR2

I am having some issues with ORA*C and Cygwin. I am trying to port this UNIX program into Windows using Cygwin. I installed Cygwin with all the C libraries,etc. And I also installed Oracle 10g ...
3
votes
1answer
248 views

How to get constraint errors from OCIErrorGet?

Our C++ program is using Oracle and OCI to do its database work. Occasionally, the user will trigger a constraint violation, which we detect and then show an error message from OCIErrorGet. ...
2
votes
1answer
185 views

How to get sql_id in OCI

Is there a way to get the sql_id/child number/plan hash after calling OCIStmtExecute()? I can't see it in OCIAttrGet(). NOTE: As a regular user who can't see v$session - if I can it's as simple as ...
0
votes
2answers
84 views

Is pro*c/c++ support “describe [schema.]object” statement?

I can't prepare this statement in my pc code. When I running this statement always show out "SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement". Can there are any way to exec this ...
2
votes
2answers
148 views

Underlying mechanism in firing SQL Queries in Oracle

When we fire a SQL query like SELECT * FROM SOME_TABLE_NAME under ORACLE What exactly happens internally? Is there any parser at work? Is it in C/C++ ? Can any body please explain ? Thanks in ...
3
votes
1answer
645 views

Oracle OCI - failing with ORA-12705 when running as another user

I've got a C application using OCI to talk to a database. I'm using the instant client method so there is no standalone Oracle installation on the server - just a couple of libraries that the ...
0
votes
1answer
85 views

Oracle equivalent to Ingres inquire_sql or inquire_ingres?

I'm converting some legacy embedded-Ingres C code to work against Oracle. I've found references to functions "inquire_ingres()" and "inquire_sql()," which, per the docs at ...
0
votes
1answer
465 views

Connecting to oracle DB through C

I want to connect to oracle database using C language in Windows OS. But I do not how to start with it and what will be pre-requisite? can any one provide me any help or tutotial or sample code? ...
3
votes
1answer
158 views

Oracle beq and popen()

Good day! I have a program like this (that's for Pro*C precompiler): #include <stdio.h> #include <stdlib.h> #include <sys/wait.h> #include <errno.h> EXEC SQL BEGIN DECLARE ...
1
vote
1answer
380 views

Error in fetching from cursor using Oracle Pro*C

I'm converting an ingres C program to Oracle Pro*C. I create and open a cursor to do a SELECT (not a SELECT FOR UPDATE). The existing program does (roughly) EXEC SQL DECLARE N CURSOR for SELECT... ...
0
votes
2answers
825 views

Which db type has to used when passing an object to procedure in a oracle package using ODP.NET (C #)?

Hi I am passing an object to procedure in a oracle package using ODP.NET(C#). I am using ODP.NET because of associative arrays. I am unable to find oracledbtype.object in the ODP.NET to make parameter ...
1
vote
2answers
87 views

For some reason when I link against Oracle GSS starts behaving differently (Solaris)

My test program works fine. I can create a client and a server and run them against each other. I can set my KRB5_CONFIG environment variable and use a local configuration for testing. For some ...

1 2