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

Home -> Community -> Usenet -> c.d.o.server -> Re: Need Help With Pro*C Function

Re: Need Help With Pro*C Function

From: Richard Murphy <rmurphy_at_lbpc.com>
Date: Fri, 22 Jan 1999 17:07:16 GMT
Message-ID: <36A8B063.68253352@lbpc.com>


You can do this using dynamic SQL. There are a few methods depending on your needs. Check out the EXEC SQL EXECUTE for simple queries like yours or for more dynamic one use the PREPARE..FROM and EXECUTE..USING statements.

R.

Daniil Fishteyn wrote:

> I am not sure about pro*c but I know it is defenitly possible with OCI (Oracle
> Call Inteface).
>
> If you need more info write me.
>
> matthew_at_mattshouse.com wrote:
>
> > I was wondering if it is possible to execute a query that is represented by a
> > string. I'm not explaining it well, so I'll write some code. This will not
> > work, but you'll know where I'm going:
> >
> > strcpy(buf1,"insert into table1 (row1) values ('hello')");
> > EXEC SQL :buf1;
> >
> > Is something like this possible?
> >
> > Matthew
> >
> > -----------== Posted via Deja News, The Discussion Network ==----------
> > http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
Received on Fri Jan 22 1999 - 11:07:16 CST

Original text of this message

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