Online Shopping : Computers : Programming : Languages : PHP : Database Backed Sites : Oracle

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

38 of 42 people (90%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

Why are there 2 functions : OCIParse and OCIExecute?

May 18th, 2000 05:29
Nathan Wallace, Arnaud Megret


It enables to bind in and out PHP variables with the query.  It is
possible to call OCIEXecute() multiple times after one call to OCIParse.
So you could bind variables to the SQL query, and executes it several
times changing the values of the binded variables before each call to
OCIExecute. Thus improving speed...