 |
|
ss
Oracle Tips by Burleson |
Array
Interface
Array interface is Oracle performance enhancements
enabling programmer to bind arrays to placeholders. Thus making it
possible to fetch/insert multiple rows with a single database call.
This feature primarily saves the round trips across the network, which
is very important in the world of web and internet. This feature,
however, is primarily used to speed up large load or extract
operations which are normally not performed by web servers. Web
applications should be extremely fast and finish as quickly as
possible. Loading or fetching thousand rows at a time is not an
important feature in web applications. If this is a problem, there may
be a design problem with the application.
See
code depot for complete scripts
The above book excerpt is from:
Easy Oracle
PHP
Create Dynamic Web Pages with Oracle Data
ISBN
0-9761573-0-6
Mladen Gogala
http://www.rampant-books.com/book_2005_2_php_oracle.htm
|