Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: connecting to Oracle using C++ - best way?

Re: connecting to Oracle using C++ - best way?

From: Jim Kennedy <jim>
Date: Wed, 19 Apr 2006 19:20:36 -0700
Message-ID: <Xs6dnavAR_n_ctvZRVn-sw@comcast.com>

<anders43_at_gmail.com> wrote in message
news:1145425270.494177.294070_at_t31g2000cwb.googlegroups.com...
> thanks for the info about OCCI, will check that out. What about the ADO
> - how is the perfomance?
>

The API used to manipulate data isn't usually the problem. The problem is usually poorly written applications.
The usual suspects are:

  1. No bind variables.
  2. Not reusing cursors
  3. Inefficient code
  4. "generic" database usage.
  5. Poor schema design.

Read the application developer's guide. Use bind variables, use the array interface.
Jim Received on Wed Apr 19 2006 - 21:20:36 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US