The Underground PHP and Oracle Manual: Christopher Jones and Alison Holloway
The Underground PHP and Oracle Manual: Christopher Jones and Alison Holloway
The Programs (which include both the software and documentation) contain proprietary information; they
are provided under a license agreement containing restrictions on use and disclosure and are also
protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering,
disassembly, or decompilation of the Programs, except to the extent required to obtain interoperability with
other independently created software or as specified by law, is prohibited.
The information contained in this document is subject to change without notice. If you find any
problems in the documentation, please report them to us in writing. This document is not warranted to be
error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of
these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical,
for any purpose.
iii
Enabling Database Startup and Shutdown from Menus on Linux..................................................26
Starting and Stopping the Listener and Database.........................................................................26
Enabling Remote Client Connection..............................................................................................29
Chapter 5 Using Oracle Database.........................................................................................31
Oracle Application Express...............................................................................................................31
Logging In To Oracle Application Express.....................................................................................31
Unlocking the HR User..................................................................................................................32
Creating Database Objects...........................................................................................................33
Working with SQL Scripts..............................................................................................................37
Creating a PL/SQL Procedure.......................................................................................................38
Creating a Database User.............................................................................................................40
Monitoring Database Sessions......................................................................................................42
Database Backup and Recovery...................................................................................................44
Oracle SQL*Plus..............................................................................................................................47
Starting SQL*Plus.........................................................................................................................48
Executing SQL and PL/SQL Statements in SQL*Plus...................................................................49
Controlling Query Output in SQL*Plus...........................................................................................49
Running Scripts in SQL*Plus.........................................................................................................50
Information On Tables in SQL*Plus...............................................................................................50
Accessing the Demonstration Tables in SQL*Plus........................................................................51
Oracle SQL Developer......................................................................................................................51
Creating a Database Connection..................................................................................................51
Creating a Table............................................................................................................................54
Executing a SQL Query.................................................................................................................55
Editing, Compiling and Running PL/SQL.......................................................................................57
Running Reports...........................................................................................................................59
Creating Reports...........................................................................................................................61
Chapter 6 Installing Apache HTTP Server............................................................................63
Installing Apache HTTP Server on Linux..........................................................................................63
Starting and Stopping Apache HTTP Server.................................................................................64
Configuring Apache HTTP Server on Linux...................................................................................64
Installing Apache HTTP Server on Windows....................................................................................64
Starting and Stopping Apache HTTP Server.................................................................................65
Chapter 7 Installing PHP........................................................................................................67
Installing PHP with OCI8 on Linux....................................................................................................67
Installing OCI8 Using a Local Database........................................................................................67
Installing OCI8 Using Oracle Instant Client...................................................................................69
Upgrading PHP with PECL OCI8 on Linux.......................................................................................70
Upgrading OCI8 as a Static Library on Linux ................................................................................70
Upgrading OCI8 on Linux Using the PECL Channel......................................................................71
Upgrading OCI8 as a Shared Library on Linux..............................................................................72
iv
Installing PHP With OCI8 on Windows.............................................................................................73
Installing OCI8 Using a Local Database on Windows....................................................................73
Installing OCI8 with Instant Client on Windows.............................................................................74
Upgrading OCI8 on Windows........................................................................................................75
Installing OCI8 with Oracle Application Server on Linux...................................................................76
Installing PHP With PDO..................................................................................................................78
Installing PDO on Linux.................................................................................................................79
Installing PDO on Windows...........................................................................................................80
Checking OCI8 and PDO_OCI Installation.......................................................................................80
Chapter 8 Installing Zend Core for Oracle............................................................................83
Installing Zend Core for Oracle.........................................................................................................83
Installing Zend Core for Oracle on Linux.......................................................................................83
Testing the Zend Core for Oracle Installation on Linux..................................................................89
Installing Zend Core for Oracle on Windows.................................................................................90
Testing the Zend Core for Oracle Installation on Windows............................................................97
Configuring Zend Core for Oracle.....................................................................................................97
Chapter 9 Connecting to Oracle Using OCI8.....................................................................101
Oracle Connection Types...............................................................................................................101
Standard Connections.................................................................................................................101
Multiple Unique Connections.......................................................................................................101
Persistent Connections...............................................................................................................101
Oracle Database Name Connection Identifiers...............................................................................102
Easy Connect String....................................................................................................................103
Database Connect Descriptor String...........................................................................................104
Database Connect Name............................................................................................................104
Common Connection Errors...........................................................................................................105
Setting Oracle Environment Variables for Apache..........................................................................106
Closing Oracle Connections...........................................................................................................108
Close Statement Resources Before Closing Connections...........................................................109
Transactions and Connections....................................................................................................110
Session State with Persistent Connections..................................................................................110
Optional Connection Parameters....................................................................................................111
Connection Character Set............................................................................................................111
Connection Session Mode...........................................................................................................112
Changing the Database Password..................................................................................................114
Changing Passwords On Demand...............................................................................................114
Changing Expired Passwords......................................................................................................115
Tuning Oracle Connections in PHP.................................................................................................117
Use the Best Connection Function..............................................................................................117
Pass the Character Set................................................................................................................117
Do Not Set the Date Format Unnecessarily.................................................................................117
v
Managing Persistent Connections..................................................................................................119
Maximum Number of Persistent Connections Allowed.................................................................119
Timeout for Unused Persistent Connections................................................................................119
Pinging for Closed Persistent Connections..................................................................................119
Apache Configuration Parameters...............................................................................................120
Reducing Database Server Memory Used By Persistent Connections........................................120
Oracle Net and PHP.......................................................................................................................121
Connection Rate Limiting............................................................................................................121
Setting Connection Timeouts.......................................................................................................122
Configuring Authentication Methods............................................................................................122
Detecting Dead PHP Apache Sessions.......................................................................................123
Other Oracle Net Optimizations...................................................................................................123
Tracing Oracle Net......................................................................................................................123
Connection Management in Scalable Systems...............................................................................124
Chapter 10 Executing SQL Statements With OCI8............................................................125
SQL Statement Execution Steps....................................................................................................125
Query Example............................................................................................................................125
Oracle Datatypes.........................................................................................................................127
Fetch Functions..............................................................................................................................127
Fetching as a Numeric Array.......................................................................................................128
Fetching as an Associative Array.................................................................................................129
Fetching as an Object.................................................................................................................130
Defining Output Variables............................................................................................................131
Fetching and Working with Numbers...........................................................................................131
Fetching and Working with Dates................................................................................................132
Insert, Update, Delete, Create and Drop........................................................................................134
Transactions...................................................................................................................................134
Autonomous Transactions...........................................................................................................136
The Transactional Behavior of Connections................................................................................137
PHP Error Handling........................................................................................................................138
Handling OCI8 Errors..................................................................................................................138
Tuning SQL Statements in PHP Applications..................................................................................141
Using Bind Variables...................................................................................................................141
Tuning the Prefetch Size.............................................................................................................149
Tuning the Statement Cache Size...............................................................................................150
Using the Server and Client Query Result Caches......................................................................151
Limiting Rows and Creating Paged Datasets..................................................................................153
Auto-Increment Columns................................................................................................................155
Getting the Last Insert ID................................................................................................................157
Exploring Oracle.............................................................................................................................157
Case Insensitive Queries.............................................................................................................157
vi
Analytic Functions in SQL...........................................................................................................158
Chapter 11 Using PL/SQL With OCI8..................................................................................159
PL/SQL Overview...........................................................................................................................159
Blocks, Procedures, Packages and Triggers..................................................................................160
Anonymous Blocks......................................................................................................................160
Stored or Standalone Procedures and Functions........................................................................160
Packages....................................................................................................................................161
Triggers.......................................................................................................................................162
Creating PL/SQL Stored Procedures in PHP..................................................................................162
End of Line Terminators in PL/SQL with Windows PHP...............................................................162
Calling PL/SQL Code......................................................................................................................163
Calling PL/SQL Procedures.........................................................................................................163
Calling PL/SQL Functions...........................................................................................................164
Binding Parameters to Procedures and Functions......................................................................164
Array Binding and PL/SQL Bulk Processing...................................................................................165
PL/SQL Success With Information Warnings..................................................................................167
Using REF CURSORS for Result Sets...........................................................................................168
Closing Cursors...........................................................................................................................170
Converting from REF CURSOR to PIPELINED Results..............................................................172
Oracle Collections in PHP..............................................................................................................173
Using PL/SQL and SQL Object Types in PHP................................................................................175
Using OCI8 Collection Functions.................................................................................................176
Using a REF CURSOR................................................................................................................177
Binding an Array..........................................................................................................................179
Using a PIPELINED Function......................................................................................................180
Getting Output with DBMS_OUTPUT.............................................................................................181
PL/SQL Function Result Cache......................................................................................................183
Using Oracle Locator for Spatial Mapping......................................................................................184
Inserting Locator Data.................................................................................................................184
Queries Returning Scalar Values.................................................................................................184
Selecting Vertices Using SDO_UTIL.GETVERTICES.................................................................186
Using a Custom Function............................................................................................................186
Scheduling Background or Long Running Operations....................................................................188
Reusing Procedures Written for MOD_PLSQL...............................................................................191
Chapter 12 Using Large Objects in OCI8............................................................................193
Working with LOBs.........................................................................................................................193
Inserting and Updating LOBs......................................................................................................193
Fetching LOBs.............................................................................................................................194
Temporary LOBs.........................................................................................................................195
LOBs and PL/SQL procedures....................................................................................................196
Other LOB Methods....................................................................................................................197
vii
Working with BFILEs......................................................................................................................198
Chapter 13 Using XML with Oracle and PHP.....................................................................203
Fetching Relational Rows as XML..................................................................................................203
Fetching Rows as Fully Formed XML.............................................................................................204
Using the SimpleXML Extension in PHP.........................................................................................205
Fetching XMLType Columns...........................................................................................................206
Inserting into XMLType Columns....................................................................................................207
Fetching an XMLType from a PL/SQL Function..............................................................................209
XQuery XML Query Language........................................................................................................210
Accessing Data over HTTP with XML DB.......................................................................................212
Chapter 14 PHP Scalability and High Availability..............................................................213
Database Resident Connection Pooling.........................................................................................213
How DRCP Works.......................................................................................................................214
PHP OCI8 Connections and DRCP.............................................................................................216
When to use DRCP.....................................................................................................................218
Sharing the Server Pool..............................................................................................................219
Using DRCP in PHP.......................................................................................................................220
Configuring and Enabling the Pool..............................................................................................221
Configuring PHP for DRCP.........................................................................................................223
Application Deployment for DRCP...............................................................................................224
Monitoring DRCP............................................................................................................................226
V$PROCESS and V$SESSION Views........................................................................................227
DBA_CPOOL_INFO View...........................................................................................................227
V$CPOOL_STATS View..............................................................................................................227
V$CPOOL_CC_STATS View.......................................................................................................229
High Availability with FAN and RAC................................................................................................229
Configuring FAN Events in the Database....................................................................................230
Configuring PHP for FAN.............................................................................................................230
Application Deployment for FAN..................................................................................................230
RAC Connection Load Balancing with PHP.................................................................................231
Chapter 15 Globalization......................................................................................................233
Establishing the Environment Between Oracle and PHP................................................................233
Manipulating Strings.......................................................................................................................235
Determining the Locale of the User................................................................................................235
Encoding HTML Pages...................................................................................................................236
Specifying the Page Encoding for HTML Pages..........................................................................236
Specifying the Encoding in the HTTP Header.............................................................................237
Specifying the Encoding in the HTML Page Header....................................................................237
Specifying the Page Encoding in PHP.........................................................................................237
Organizing the Content of HTML Pages for Translation..................................................................237
Strings in PHP.............................................................................................................................238
viii
Static Files...................................................................................................................................238
Data from the Database..............................................................................................................238
Presenting Data Using Conventions Expected by the User............................................................238
Oracle Number Formats..............................................................................................................239
Oracle Date Formats...................................................................................................................240
Oracle Linguistic Sorts................................................................................................................242
Oracle Error Messages...............................................................................................................243
Chapter 16 Testing PHP and the OCI8 Extension..............................................................245
Running OCI8 Tests........................................................................................................................245
Running a Single Test..................................................................................................................247
Tests that Fail..............................................................................................................................247
Creating OCI8 Tests ......................................................................................................................248
OCI8 Test Helper Scripts.............................................................................................................249
Configuring the Database For Testing............................................................................................249
Appendix A Tracing OCI8 Internals.....................................................................................253
Enabling OCI8 Debugging output...................................................................................................253
Appendix B OCI8 php.ini Parameters.................................................................................255
Appendix C OCI8 Function Names in PHP 4 and PHP 5...................................................257
Appendix D The Obsolete Oracle Extension......................................................................261
Oracle and OCI8 Comparison........................................................................................................261
Appendix E Resources.........................................................................................................267
General Information and Forums....................................................................................................267
Oracle Documentation....................................................................................................................267
Selected PHP and Oracle Books....................................................................................................268
Software and Source Code.............................................................................................................269
PHP Links.......................................................................................................................................271
Glossary.................................................................................................................................273
ix
x
CHAPTER 1
INTRODUCTION
This book is designed to bridge the gap between the many PHP and the many Oracle texts available. It
shows how to use the PHP scripting language with the Oracle database, from installation to using them
efficiently.
The installation and database discussion in this book highlights the Oracle Database 10g Express
Edition, but everything covered in this book also applies to the other editions of the Oracle database,
including Oracle Database 11g. The PHP you write for Oracle Database 10g Express Edition can be run,
without change, against all editions of the Oracle database as well.
The book contains much unique material on PHP's Oracle OCI8 and PDO_OCI extensions. It also
incorporates several updated installation guides previously published on the Oracle Technology Network
web site. The chapter on globalization is derived from the Oracle Database Express Edition 2 Day Plus PHP
Developer Guide. Sue Harper contributed the chapter on SQL Developer. The chapter on PHP Scalability and
High Availability is derived from the Oracle whitepaper, PHP Scalability and High Availability, April 2008.
We gratefully acknowledge all the Oracle staff that contributed to this book.
Introduction to Oracle
The Oracle Database is well known for its scalability, reliability and features. It is the leading database and
is available on many platforms.
1
Introduction
There are some subtle differences between the terminology used when describing an Oracle database
and a database from other software vendors. The following overview of the main Oracle terms might help
you to understand the Oracle terminology. Check the Glossary for more descriptions.
Tablespaces
Tablespaces are the logical units of data storage made up of one or more datafiles. Tablespaces are often
created for individual applications because tablespaces can be conveniently managed. Users are assigned a
default tablespace that holds all the data the users creates. A database is made up of default and DBA-
created tablespaces.
Introduction to PHP
PHP is a hugely popular, interpreted scripting language commonly used for web applications. PHP is open
source and free, and has a BSD-style license, making it corporation-friendly. PHP is perfect for rapidly
developing applications both big and small, and is great for creating Web 2.0 applications. It powers over
twenty million web sites on the Internet and has a huge user community behind it. It runs on many
platforms.
The language is dynamically typed and easy to use. PHP comes with many extensions offering all
kinds of functionality such as database access. PHP 5 introduced strong object orientated capabilities.
2
Introduction to PHP
PHP is typically installed as an Apache module, or run by the web server using FastCGI. It includes the
PHP OCI8 extension and is linked with the Oracle Client Libraries, enabling Oracle Database access. When
a user enters the URL of a PHP script hello.php (see step 1 in Figure 1) in their browser, Apache invokes
PHP to processes the file. The PHP code is executed (2), with calls to the database (3). Finally, the HTML
output is returned to the user's browser (4), which formats and displays the page.
The PHP command line interface (CLI) can also be used to run PHP scripts from an operating system shell
window.
3
Introduction
4
CHAPTER 2
Blocks of PHP code and HTML code may be interleaved. The PHP code can also explicitly print HTML
tags:
<?php
echo '<h3>';
echo 'Full Results';
echo '</h3>';
$output = "no results available";
?>
<table border="1">
<tr>
<td>
<?php echo $output ?>
</td>
</tr>
</table>
5
Getting Started With PHP
</tr>
</table>
Variable names are prefixed with a dollar sign. Things that look like variables inside a double-quoted string
will be expanded:
"A value appears here: $v1"
Strings and variables can be displayed with an echo or print statement. Formatted output with printf()
is also possible.
echo 'Hello, World!';
echo $v, $x;
print 'Hello, World!';
printf("There is %d %s", $v1, $v2);
Code flow can be controlled with tests and loops. PHP also has a switch statement. The if/elseif/else
statements look like:
if ($sal > 900000) {
echo 'Salary is way too big';
} elseif ($sal > 500000) {
echo 'Salary is huge';
} else {
echo 'Salary might be OK';
6
PHP Syntax Overview
This prints the numbers 0 to 9, each on a new line. The value of $i is incremented in each iteration. The
loop stops when the test condition evaluates to true. You can also loop with while or do while constructs.
The foreach command is useful to iterate over arrays:
$a3 = array('Aa', 'Bb', 'Cc');
foreach ($a3 as $v) {
echo $v;
}
Functions may have variable numbers of arguments. This function could be called using:
$v3 = myfunc(1, 3);
Function calls may appear earlier than the function definition. Procedures use the same function keyword
but do not have a return statement.
Sub-files can be included in PHP scripts with an include() or require() statement.
include('foo.php');
require('bar.php');
A require() will generate a fatal error if the script is not found. The include_once() and
require_once() statements prevent multiple inclusions of a file.
Comments are either single line:
// a short comment
or multi-line:
/*
A
longer
comment
*/
7
Getting Started With PHP
Values can be changed by editing php.ini or using the Zend Core for Oracle console, and restarting the web
server. Some values can also be changed within scripts by using the ini_set() function.
To connect to Oracle, some Oracle environment variables need to be set before the web server starts.
This is discussed in the installation chapters of this book.
Various options to the php executable control its behavior. The -h options gives the help text:
$ php -h
Common options when first using PHP are --ini which displays the location of the php.ini file, and -i
which displays the value of the php.ini settings.
8
Running PHP Scripts
["PI"]=>
float(3.1415)
}
The formatting is apparent when using command-line PHP. In a browser, to prevent white space and new
lines coalescing, you will need to do:
echo '<pre>';
$a2['PI'] = 3.1415;
var_dump($a2);
echo '</pre>';
Some examples in this manual use var_dump() to simplify the code being demonstrated or to show the
type and contents of a variable.
9
Getting Started With PHP
10
CHAPTER 3
Oracle Extension
The extension called “Oracle” was included in PHP 3, 4 and 5.0. It had limited functionality, is no longer in
PHP, and is not maintained. The extension accessed the database using Oracle’s obsolete “OCI7” C
language API. New development using this extension is not recommended.
OCI8 Extension
OCI8 is the recommended extension to use. It is included in PHP 3, 4, and 5. It is also in PHP 6, which is in
the early stage of development. It is open source and maintained by the PHP community. Oracle is a
member of the community looking after OCI8.
There have been major and minor changes to the OCI8 extension in various versions of PHP. It is
recommended to upgrade the default OCI8 code in PHP 4 – PHP 5.2 to the latest version of the extension.
An example script that finds city names from the locations table using OCI8:
Script 1: intro.php
<?php
$c = oci_connect('hr', 'hrpwd', 'localhost/XE');
11
PHP Oracle Extensions
When invoked in a web browser, it connects as the demonstration user hr of the Oracle Database XE
database running on the local machine. The query is executed and a web page of results is displayed in the
browser:
In PHP 5, some extension function names were standardized. PHP 4 functions like OCILogin() became
oci_connect(), OCIParse() became oci_parse() and so on. The old names still exist as aliases, so
PHP 4 scripts do not need to be changed. A table showing old and new names appears in Appendix C.
The name “OCI8” is also the name for Oracle’s Call Interface API used by C programs such as the PHP
OCI8 extension. All unqualified references to OCI8 in this book refer to the PHP extension.
PDO Extension
PHP Data Objects (PDO) is a data abstraction extension that provides PHP functions for accessing
databases using a common core of database independent methods. Each database has its own driver, which
may also support vendor specific functionality. PDO_OCI provides the Oracle functionality for PDO. The
PDO extension and PDO_OCI driver are open source and included in PHP 5.1 onwards.
An example script that finds city names from the locations table using PDO_OCI is:
Script 1: connectpdo.php
<?php
$dbh = new PDO('oci:dbname=localhost/XE', 'hr', 'hrpwd');
$s = $dbh->prepare("select city from locations");
12
PHP Oracle Extensions
$s->execute();
while ($r = $s->fetch(PDO::FETCH_ASSOC)) {
echo $r['CITY'] . "<br>";
}
?>
ADOdb
The popular ADOdb library is available from http://adodb.sourceforge.net. There is an optional C
extension plug-in if you need extra performance.
An example script that finds city names from the locations table using ADOdb:
Script 2: connectadodb.php
<?php
require_once("adodb.inc.php");
$db = ADONewConnection("oci8");
$db->Connect("localhost/XE", "hr", "hrpwd");
$s = $db->Execute("select city from locations");
while ($r = $s->FetchRow()) {
echo $r['CITY'] . "<br>";
}
?>
13
PHP Oracle Extensions
PEAR DB
The PHP Extension and Application Repository (PEAR) contains many useful packages that extend PHP’s
functionality. PEAR DB is a package for database abstraction. It is available from
http://pear.php.net/package/DB. PEAR DB has been superseded by PEAR MDB2 but is still widely
used.
PEAR MDB2
The PEAR MDB2 package is available from http://pear.php.net/package/MDB2. It is a library
aiming to combine the best of PEAR DB and the PHP Metabase abstraction packages.
An example script that finds city names from the locations table using MDB2:
Script 3: connectpear.php
<?php
require("MDB2.php");
$mdb2 = MDB2::connect('oci8://hr:hrpwd@//localhost/XE');
$res = $mdb2->query("select city from locations");
while ($row = $res->fetchRow(MDB2_FETCHMODE_ASSOC)) {
echo $row['city'] . "</br>";
}
?>
14
Getting the OCI8 Extension
Oracle has cross-version compatibility. For example, if PHP OCI8 is linked with Oracle Database 10g client
libraries, then PHP applications can connect to Oracle Database 8i , 9i, 10g or 11g. If OCI8 is linked with
Oracle Database 11g libraries, then PHP can connect to Oracle Database 9iR2 onwards.
If the database is installed on the same machine as the web server and PHP, then PHP can be linked
with Oracle libraries included in the database software. If the database is installed on another machine,
then link PHP with the small, free Oracle Instant Client libraries.
15
PHP Oracle Extensions
Full OCI8 functionality may not be available unless the Oracle client libraries and database server are
the latest version.
Table 2 shows the compatibility of the Oracle client libraries with the current OCI8 extension and PHP.
Older versions of PHP have different compatibility requirements.
Software Bundle PHP Version OCI8 Version Oracle Client Libraries Usable
Included with OCI8
PHP Release Source Code Current release is 5.2.7 OCI8 1.2.5 8i, 9i, 10g, 11g
PHP Release Windows Current release is 5.2.7 OCI8 1.2.5 10g, 11g
Binaries
PECL OCI8 Source Code Builds with PHP 4.3.9 Latest release is 9iR2, 10g, 11g
onwards OCI8 1.3.4
Zend Core for Oracle 2.5 Includes PHP 5.2.5 OCI8 1.2.3 Inbuilt Oracle Database 10g client
If OCI8 is being used with PHP 4, 5.0, 5.1 or 5.2, consider replacing the default OCI8 code with the latest
version from PECL to get improved stability, behavior and performance optimizations. This is important
for PHP 4 and 5.0 because their versions of OCI8 are notoriously unstable. Instructions for updating OCI8
are shown later in this book.
16
Getting the PDO Extension
17
PHP Oracle Extensions
The schedules of PHP releases, the PECL source snapshots, and Zend Core for Oracle are not fully
synchronized.
As a result of a recent PHP version numbering overhaul, the OCI8 extension included in the PHP
source code is now labeled with the same version number as the equivalent PECL release.
Table 4 shows the major features in each revision of PECL OCI8.
18
CHAPTER 4
Oracle Database XE
Oracle Database XE is available on 32-bit Windows and Linux platforms. Oracle Database XE is a good
choice for development of PHP applications that require a free, small footprint database.
Oracle Database XE is available on the Oracle Technology Network (http://otn.oracle.com/xe)
for the following operating systems:
● Windows 2000 Service Pack 4 or later
● Windows Server 2003
19
Installing Oracle Database 10g Express Edition
# su
Password:
20
Installing Oracle Database XE on Linux
# /etc/init.d/oracle-xe configure
5. Accept the default ports of 8080 for Application Express, and 1521 for the Database Listener.
6. Enter and confirm the password for the default users.
7. Enter Y or N for whether you want the database to start automatically on reboot. The database and
database listener are configured and started.
If you use the Oracle Unbreakable Linux Network and have the Oracle Software channel enabled, you can
install Oracle DatabaseXE with:
# up2date oracle-xe
libaio and bc are included in the repository, and will be installed from the repository if you do not already
have them installed.
If you download Oracle Database XE from the Oracle Technology Network
(http://otn.oracle.com/xe), you need to make sure that you have already installed the libaio and bc
packages. If you are using Ubuntu or Kubuntu, the bc package is installed by default on the desktop
version, but not on the server version.
To install Oracle Database XE on Debian, Ubuntu and Kubuntu, follow these steps:
1. Log in or su as root
# su
Password:
# apt-get update
# apt-get install oracle-xe
If you have not added the apt-get repository, you can download Oracle Database XE from
http://otn.oracle.com/xe, and run the following command to begin the install:
# dpkg -i downloads/oracle-xe-universal_10.2.0.1-1.0_i386.deb
21
Installing Oracle Database 10g Express Edition
# /etc/init.d/oracle-xe configure
4. Accept the default ports of 8080 for Application Express, and 1521 for the Database Listener.
5. Enter and confirm the password for the default users.
6. Enter Y or N for whether you want the database to start automatically on reboot. The database and
database listener are configured and started.
22
Installing Oracle Database XE on Windows
8. Oracle Database XE requires a number of ports and selects a number of default ports. If these ports are
already being used, you are prompted to enter another port number.
9. In the Specify Database Passwords window, enter and confirm the password to use for the sys and
system database accounts. Click Next.
10. In the Summary window, review the installation settings. Click Install.
23
Installing Oracle Database 10g Express Edition
11. In the InstallShield Wizard Complete window, click Launch the Database homepage to display the
Database Home Page. Click Finish.
24
Testing the Oracle Database XE Installation
3. Log in as user system with the password you entered during the installation. You should now be
logged into the Oracle Database homepage.
For C and tcsh shells, use oracle_env.csh. Run the appropriate script for your shell to set your Oracle
Database XE environment variables. You can also add this script to your login profile to have the
environment variables set up automatically when you log in.
To add the script to your Bourne, Bash or Korn shell, add the following lines to your .bash_profile or
.bashrc file:
. /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
(Note the space after the period). To add the script to your login profile for C and tcsh shells, add the
following lines to your .login or .cshrc file:
source /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.csh
25
Installing Oracle Database 10g Express Edition
To stop the listener and database on Linux platforms using the command line, run the following command
in your shell:
# /etc/init.d/oracle-xe stop
You can also use the Services dialog from the Desktop to start and stop the listener and database.
To start the listener and database from the Desktop Services dialog, select Applications > System Settings
> Server Settings > Services. Select oracle-xe from the list of services and select Start.
To stop the listener and database from the Desktop Services dialog, select Applications > System
Settings > Server Settings > Services. Select oracle-xe from the list of services and select Stop.
26
Configuring Oracle Database XE
Type exit and press Enter to close the Window. The listener and database are now started.
To stop the listener and database on Windows platforms, select Start > Oracle Database 10g Express
Edition > Stop Database. A Window is displayed showing the status of the listener and database
shutdown process.
Type exit and press Enter to close the Window. The listener and database are now stopped. You can also
start and stop the listener separately on Windows platforms using the Services dialog.
To start the listener on Windows platforms, open the Services dialog using Start > Settings > Control
Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the
Listener service, and select Start.
27
Installing Oracle Database 10g Express Edition
To stop the listener on Windows platforms, open the Services dialog using Start > Settings > Control
Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the
Listener service, and select Stop.
You can also start and stop the database separately on Windows platforms using the Services dialog.
To start the database using the Services dialog on Windows platforms, open the Services dialog using
Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE
service. Right click on the database service, and select Start.
To stop the database using the Services dialog on Windows platforms, open the Services dialog using
Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE
service. Right click on the database service, and select Stop.
Oracle Net starts the listener and it is ready to take database requests. If you want to shut down the listener
manually, you use the similar command from the operating system command prompt:
# lsnrctl stop
After starting the listener, you also need to start the database using SQL*Plus. For this, you must log in as a
database user with the sysdba role. This is the sys user in default installations, or you can use operating
system authentication if you are on the local machine in the operating system dba group. To start up a
database using SQL*Plus, enter the following at the command line prompt:
# sqlplus /nolog
The SQL*Plus command line starts. You can also start SQL*Plus from the Applications > Oracle Database
10g Express Edition > Run SQL Command Line on Linux, or Start > Programs > Oracle Database 10g
Express Edition > Run SQL Command Line on Windows.
At the SQL*Plus command line prompt, enter the following commands to connect to the database and
start it up:
SQL> connect / as sysdba
SQL> startup
28
Configuring Oracle Database XE
The SQL*Plus User’s Guide and Reference gives you the full syntax for starting up and shutting down the
database if you need more help.
29
Installing Oracle Database 10g Express Edition
30
CHAPTER 5
3. Log in as system. The password you enter here is the password you entered when you installed Oracle.
There is no default system password set by the Oracle Installer.
31
Using Oracle Database
32
Oracle Application Express
4. To unlock the hr user, enter a password in the Password and Confirm Password fields. The examples
in later chapters use the password hrpwd. Change Account Status to Unlocked, and click the Alter
User button.
33
Using Oracle Database
● Sequence
● Collection Type
● Package
● Procedure
● Function
● Trigger
● Database Link
● Materialized View
● Synonym
Oracle Application Express uses wizards to guide you through creating these database objects. The
following example covers creating a table, but you will see that the interface is wizard-based and creating
and editing different objects can all be performed through the Object Browser.
To create a new table:
1. On the Database home page, click the Object Browser icon. The Object Browser page is displayed.
34
Oracle Application Express
2. Click Create.
4. Enter a table name in the Table Name field, and details for each column. Click Next.
5. Define the primary key for this table (optional).
6. Add foreign keys (optional).
35
Using Oracle Database
You could also run this command in SQL*Plus command line to create the table.
9. Click Create. The table is created and a description of the table is displayed.
36
Oracle Application Express
3. Select objects from the Object Selection pane. When you click on the object name, it is displayed in the
Design pane.
37
Using Oracle Database
4. Select columns from the objects in the Design pane to select which columns to include in the query
results.
5. Establish relationships between objects by clicking on the right-hand column of each table (optional).
6. Create query conditions (optional).
7. Click Run to execute the query and view the results.
38
Oracle Application Express
3. On the SQL Commands page, enter some PL/SQL code. Here is some PL/SQL code to try if you aren’t
familiar with PL/SQL. This procedure, emp_stat, averages the salary for departments in the hr
schema, and is encapsulated in a PL/SQL package called emp_sal. You need to enter each block
separately, and click Run.
Click Run to execute the PL/SQL. Then enter the following code:
create or replace package body emp_sal as
Procedure emp_stat is
TYPE EmpStatTyp is record (Dept_name varchar2(20),
Dept_avg number);
EmpStatVar EmpStatTyp;
BEGIN
DBMS_OUTPUT.PUT_LINE('Department Avg Salary');
DBMS_OUTPUT.PUT_LINE('--------------- -----------');
For EmpStatVar in (select round(avg(e.salary),2)
a,d.department_name b
from departments d, employees e
where d.department_id=e.department_id
group by d.department_name)
LOOP
DBMS_OUTPUT.PUT_LINE(RPAD(EmpStatVar.b,16,' ')||
TO_CHAR(EmpStatVar.a,'999,999,999.99'));
END LOOP;
END;
39
Using Oracle Database
end emp_sal;
begin
emp_sal.emp_stat;
end;
5. If you want to save the PL/SQL code for future use, click Save.
40
Oracle Application Express
2. On the Manage Database Users page, click Create. The Create Database User page is displayed.
41
Using Oracle Database
7. The DBA role is by default not selected. The DBA privilege, gives the user the ability to create schema
objects in other users' schemas, and to create other users.
8. Click Create. The Manage Database Users page displays a confirmation that the user was created.
42
Oracle Application Express
1. On the Database home page, click the Administration icon. Click Monitor.
43
Using Oracle Database
3. The Sessions page is displayed and shows the current active sessions.
4. (Optional) In the Status list, select All, and click Go. The page displays all sessions, including idle
sessions. (An example of an idle session is a SQL*Plus command line session that is not currently
running a command.)
5. (Optional) Narrow down the sessions list by entering search text into the Search field and clicking Go.
A session is shown if any of the following fields contain the search text: SID, Database User, Machine,
OS User, Client Information, Client Identifier, and Module.
6. (Optional) Click any of the hyperlinks above the Search field to view the following information for all
sessions: Locks, Waits, Input/Output (I/O), running SQL statements, and open cursors.
7. (Optional) Under the SID column, click a session ID to view the Session Details page for that session.
The Session Details page enables you to kill the session.
44
Oracle Application Express
Log archiving on (ARCHIVELOG mode) restores the backed up database files, and then uses the online
and archived redo log files to recover the database to the state it was in before the software or media failure
occurred. All committed transactions that took place after the last backup are recovered, and any
uncommitted transactions that were under way when the failure took place are rolled back (using undo
data from the restored undo tablespace).
Log archiving off (NOARCHIVELOG mode) restores the database to its state at the last backup. Any
transactions that took place after the last backup are lost.
● On Linux with Gnome, select Applications > Oracle Database 10g Express Edition > Backup
Database.
● On Linux with KDE, select K Menu > Oracle Database 10g Express Edition > Backup Database.
● On Windows, select Start > Programs > Oracle Database 10g Express Edition > Backup
Database.
3. A console window opens so that you can interact with the backup script. If running in ARCHIVELOG
mode, the script displays the following output:
If prompted, answer y to confirm the database shutdown and begin the backup. After the backup
is complete, the script displays the following output:
45
Using Oracle Database
● On Linux with Gnome, select Applications > Oracle Database 10g Express Edition > Restore
Database.
● On Linux with KDE, select K Menu > Oracle Database 10g Express Edition > Restore Database.
● On Windows, select Start > Programs > Oracle Database 10g Express Edition > Restore
Database.
3. A console window opens so that you can interact with the restore script. The script displays the
following output:
46
Oracle Application Express
4. Answer y to confirm the database shutdown and begin the restore. After the restore is complete, the
script displays the following output:
Oracle SQL*Plus
SQL*Plus is Oracle's traditional command line tool. It is available whenever the database is installed. Its
command set is limited but it allows ad-hoc queries, scripting and fundamental database administration.
Many books, including this one, use SQL*Plus to show SQL examples. For easy development, you may
prefer to use SQL Developer, which is described in the next section.
47
Using Oracle Database
Starting SQL*Plus
Oracle Database XE sets up a menu option to run SQL*Plus. However, in general, if you want to run
SQL*Plus from a terminal window, the sqlplus executable must be in your PATH and several environment
variables need to be set explicitly. These are pre-set in the registry on Windows.
On Linux, for Oracle Database XE, set the environment with:
$ . /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
You will be prompted for the system identifier ("SID") of the database on this machine that you intend to
connect to. The available SIDs can be seen in /etc/oratab. Type the desired SID and press enter.
If you are running SQL*Plus on a machine remote from the database server, you need to manually set
the environment.
Once the environment is set, SQL*Plus can be started with the sqlplus command:
$ sqlplus
Enter user-name: hr
Enter password:
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL>
The password you enter is not displayed. The prompt SQL> is shown. Type HELP INDEX to find a list of
commands. Type EXIT to quit.
In development, it is common to put the username, password and database that you want to connect to
all on the command line, but beware that entering the password like this is a security risk:
sqlplus hr/hrpwd@localhost/XE
48
Oracle SQL*Plus
SQL>
To connect as a privileged user for database administration, first login to the operating system as a user in
the dba group and then use:
$ sqlplus / as sysdba
or
sqlplus /nolog
SQL> connect / as sysdba
This last example also shows SQL*Plus prompting for a second line of input. Code in Oracle's procedural
language, PL/SQL, must end with a slash in addition to the PL/SQL code's semi-colon:
SQL> begin
2 myproc();
3 end;
4 /
The terminating semi-colon or slash is not part of the statement. Tools other then SQL*Plus will use
different methods to indicate “end of statement”.
If a blank line (in SQL) or a single period (in SQL or PL/SQL) is entered, SQL*Plus returns to the main
prompt and does not execute the statement:
SQL> select * from locations
2
SQL>
If you are fetching data from LONG, CLOB or (with SQL*Plus 11g) from BLOB columns, increase the
maximum number of characters that will display (the default is just 80):
49
Using Oracle Database
Note these are local commands to SQL*Plus and do not need a semi-colon.
The column width of queries can be changed with the COLUMN command, here setting the
COUNTRY_NAME output width to 20 characters, and the REGION_ID column to a numeric format with a
decimal place:
SQL> select * from countries where country_id = 'FR';
CO COUNTRY_NAME REGION_ID
-- ---------------------------------------- ----------
FR France 1
CO COUNTRY_NAME REGION_ID
-- -------------------- ----------
FR France 1.0
Because SQL*Plus doesn't have a full history command, writing statements in scripts using an external
editor and running them this way is recommended.
TABLE_NAME TABLE_TYPE
------------------------------ -----------
COUNTRIES TABLE
DEPARTMENTS TABLE
DEPARTMENTS_SEQ SEQUENCE
EMPLOYEES TABLE
50
Oracle SQL*Plus
EMPLOYEES_SEQ SEQUENCE
JOBS TABLE
JOB_HISTORY TABLE
LOCATIONS TABLE
LOCATIONS_SEQ SEQUENCE
REGIONS TABLE
10 rows selected.
To find out about the columns of a table, query the USER_TAB_COLUMNS view, or simply use the DESCRIBE
command to give an overview:
SQL> describe countries
Name Null? Type
----------------------------------------- -------- ----------------------------
COUNTRY_ID NOT NULL CHAR(2)
COUNTRY_NAME VARCHAR2(40)
REGION_ID NUMBER
51
Using Oracle Database
2. Click the Test button to test the connection. A message is displayed at the bottom left side of the dialog
to tell you whether the test connection succeeded. Click the Connect button to save the connection and
connect to it.
52
Oracle SQL Developer
When you have connected to a database, you can browse through the database objects displayed in the left
pane, and the right pane shows the contents of the object. In Figure 40, the employees table is displayed.
Editing Data
You can view and edit data using the Data tab for a table definition. Select the Data tab for the employees
table to display the records available. You can add rows, update data and delete rows using the data grid.
If you make any changes, the records are marked with an asterisk. Throughout SQL Developer, there are
context sensitive menus. Figure 41 shows the choice of context menus available in the data grid.
53
Using Oracle Database
Creating a Table
You can create database objects such as tables, views, indexes, and PL/SQL procedures using SQL
Developer. To create a database object, right click on the database object type you want to create, and
follow the dialogs. You can use this method to create any of the database objects displayed in the left pane.
To create a new table:
1. Select Tables in the left pane, right click and select Create Table. The Create Table dialog is displayed.
Enter the column names, types and other parameters as required.
Click the Advanced check box to see more advanced options like constraints, indexes, foreign
keys, and partitions.
2. Click OK to create the table. The new table mytable is now listed in the left pane.
54
Oracle SQL Developer
Click on the tabs displayed in the right pane to see the options available on the table, such as the Data tab,
which enables you to add, delete, modify, sort, and filter rows in the table.
55
Using Oracle Database
DESCRIBE HR.EMPLOYEES
SELECT * FROM HR.EMPLOYEES;
Click the Run Script icon (the second from the left in the right hand pane), or press F5. Both the
lines of this script are run and the output is displayed in tabs below. You can view the output of
the SELECT statement in the Results tab, using F9, and the output of the whole script (including
the DESCRIBE and SELECT statements) in the Script Output tab, by using F5. If you have used
Oracle’s command line tool SQL*Plus, the output in the Script Output window is likely to be
familiar to you.
56
Oracle SQL Developer
3. If you want to execute a single line of the two-line statement, select the line you want to execute and
click on the Execute Statement icon (the first from the left in the right hand pane), or press F9. In this
case, the SELECT statement (second line) is selected, and the results are shown in the Results tab.
You should also take a moment to click on the Snippets on the top right hand of the interface. Snippets are
a handy set of SQL and PL/SQL code snippets that you can drag into the SQL Worksheet component.
57
Using Oracle Database
2. The PL/SQL Editor is opened. Replace or add the text so that your code is as follows:
3. Compile the code by selecting the compile icon in the toolbar. If there are errors, they will appear in
the Message-Log window below
58
Oracle SQL Developer
4. Run the procedure. The green arrow icon runs the code.
5. SQL Developer provides dialog with an anonymous block to help test and run your code. Find and
replace the NULL values with values of your own, for example, Training and 1800. Query the
Departments table to see the results added.
Running Reports
There are a number of reports included with SQL Developer that may be useful to you, for example,
getting lists of all users in a database, all the tables owned by a user, or all the views available in the data
dictionary.
59
Using Oracle Database
You can also create your own reports (using SQL and PL/SQL), and include them in SQL Developer.
To display the version numbers of the database components using one of the supplied reports:
1. Select the Reports tab in the left hand pane. Navigate down to Reports > Data Dictionary Reports >
About Your Database > Version Banner. The report is run and the results are displayed in the right
hand pane.
2. Click the Run Report in SQL Worksheet icon (next to Refresh). The source code is written to the SQL
Worksheet. You can also export the supplied reports to edit and add back as user defined reports.
60
Oracle SQL Developer
Creating Reports
To create your own reports, select User Defined Reports, and right click. It is good practice to create folder
for your reports, to categorize them.
1. Right click the User Defined Reports node and select Add Folder. Complete the details in the dialog.
You can use this folder to import or add new reports.
2. Select the folder you created and right click to select Add Report.
3. Give the report a name and description and enter the following SQL text.
SELECT Last_name,
DEPARTMENT_NAME,
CITY
FROM DEPARTMENTS D,
LOCATIONS L,
EMPLOYEES E
WHERE(D.LOCATION_ID = L.LOCATION_ID)
AND(D.MANAGER_ID= E.EMPLOYEE_ID)
AND(E.DEPARTMENT_ID= D.DEPARTMENT_ID)
order by CITY, DEPARTMENT_NAME
4. Notice that the default style is table. You can test the report to ensure your SQL is correct, without
leaving the dialog. Click the Test button on the Details tab.
61
Using Oracle Database
You can create tabular reports, charts, drill down reports and master/detail reports. For all reports,
supplied and user defined, you can export, import and share your reports.
62
CHAPTER 6
Note: Apache release 2.2.9 is the latest version available. The installation shown in this Chapter may need some variation if this
latest version is used.
If you are familiar with the tar command on UNIX systems, you may be wondering why we did not
need to invoke bunzip2 to extract the .tar file. Linux includes the GNU version of tar, which has a
new -j flag to automatically uncompress a bzipped .tar file. If you downloaded the .gz gzipped file,
you could have used the -z flag instead.
3. Configure and build the web server:
# cd httpd-2.0.59
# ./configure --prefix=/usr/local/apache --enable-module=so
# make
# make install
When configuring the web server, the option --enable-module=so allows PHP to be compiled as a
Dynamic Shared Object (DSO). Also, the --prefix= option sets where Apache HTTP Server will be
installed during the command make install.
63
Installing Apache HTTP Server
Note: With Apache 2, you should use the default pre-fork MPM (“Multi-Processing Module”), because thread-safety of
many of the PHP libraries is not known.
You should test that Apache has been installed properly and is started on your machine by opening your
web browser to http://localhost/ or http://127.0.0.1/ to display the Apache home page.
Now stop Apache so it can be configured for PHP:
# /usr/local/apache/bin/apachectl stop
Note: If you are using Oracle Database10g Release 10.2, but not Oracle Database XE, you must give the nobody user access to
files in the Oracle directory. With Oracle Database 10g Release 10.2.0.2 onwards, there is a script located in
$ORACLE_HOME/install/changePerm.sh to do this.
If there are errors, they are displayed on your screen. Errors may also be recorded in
/usr/local/apache/logs/error_log. If you have problems, check your httpd.conf and php.ini configuration files for
any incorrect settings, and make corrections.
Note: Do not set Oracle environment variables in PHP scripts with putenv(). The web server may load Oracle libraries and
initialize Oracle data structures before running your script. Using putenv() causes hard to track errors as the behavior is not
consistent for all variables, web servers, operating systems, or OCI8 functions. Variables should be set prior to Apache starting.
64
Installing Apache HTTP Server on Windows
65
Installing Apache HTTP Server
66
CHAPTER 7
INSTALLING PHP
This Chapter discusses ways of installing PHP on Linux and Windows. Installation on other systems such
as Solaris and Mac OS X is similar to the Linux steps.
The main installation scenarios are covered. You might come across other situations that require a
combination of steps to be followed.
The Apache HTTP Server need to be installed before installing PHP, and a database must be accessible
in your network.
# /usr/sbin/apachectl stop
# export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
# ./configure \
> --with-apxs2=/usr/sbin/apxs \
> --with-oci8=$ORACLE_HOME \
> --enable-sigchild
Use the appropriate path to your Oracle software installation. The path can be found in /etc/oratab.
If you installed your own Apache, use the appropriate path to the Apache extension tool, for
example /usr/local/apache/bin/apxs. If you have Apache 1.3 instead of Apache 2, change the –-with
—apxs2 option to –-with-apxs.
67
Installing PHP
Note: Although configure fails if it cannot find the Oracle software, prior to PHP 5.2.4 it silently ignores a misspelled
option name. Before continuing, review the output and make sure the “checking for Oracle (OCI8) support” line was
marked as “yes”.
Other desired options and extensions can be used in the configure command. To list all the options,
use the command:
configure –-help
# make
# make install
6. Copy PHP’s supplied initialization file php.ini-recommended. To find the destination directory, use the
--ini option to command line PHP:
# php --ini
Configuration File (php.ini) Path: /usr/local/lib
Loaded Configuration File: (none)
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
This shows the path is /usr/local/lib. Copy the file to that directory:
# cp php.ini-recommended /usr/local/lib/php.ini
7. For testing it is helpful to edit php.ini and set display_errors to On so you see any problems in your
code. Make sure you change this configuration option back to Off before making your application
available to users.
8. Edit Apache’s configuration file /etc/httpd/conf/httpd.conf and add the following lines:
#
# This section will call PHP for .php, .phtml, and .phps files
#
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
9. If a LoadModule line was not already inserted by the PHP install, add it too:
10. Set any required Oracle environment variables, such as ORACLE_HOME, LD_LIBRARY_PATH and
NLS_LANG. See Setting Oracle Environment Variables for Apache in the chapter Connecting to Oracle Using
OCI8.
68
Installing PHP with OCI8 on Linux
# /usr/sbin/apachectl start
# /usr/sbin/apachectl stop
The first RPM puts the Oracle libraries in /usr/lib/oracle/11.1/client/lib and the second creates headers in
/usr/include/oracle/11.1/client.
If you are using the Instant Client ZIP files, unzip the Basic and the SDK packages to a directory of
your choice, for example $HOME/instantclient_11_1. The files should be unzipped together so the
SDK is in $HOME/instantclient_11_1/sdk.
6. If Instant Client was installed from the ZIP files, create a symbolic link:
# cd $HOME/instantclient_11_1
# ln -s libclntsh.so.11.1 libclntsh.so
7. Configure PHP:
# cd php-5.2.7
# ./configure \
69
Installing PHP
> --with-apxs2=/usr/sbin/apxs \
> --with-oci8=instantclient,/usr/lib/oracle/11.1/client/lib \
> --enable-sigchild
If you are using the ZIP files then change the --with-oci8 option to the unzipped directory:
--with-oci8=instantclient,$HOME/instantclient_11_1
8. Rebuild PHP:
# make
# make install
# cp php.ini-recommended /usr/local/lib/php.ini
10. Set any required Oracle environment variables such as LD_LIBRARY_PATH and NLS_LANG. See Setting
Oracle Environment Variables for Apache in the chapter Connecting to Oracle Using OCI8.
11. Restart the Apache HTTP Server:
# /usr/sbin/apachectl start
70
Upgrading PHP with PECL OCI8 on Linux
# rm -rf php-4.4.9/ext/oci8
If you only rename the oci8 directory the configure script will not be properly created.
4. Download the latest OCI8 extension from http://pecl.php.net/package/oci8.
5. Extract the files and move the directory to ext/oci8:
# cd php-4.4.9
# rm –rf configure config.cache autom4te.conf
# ./buildconf –-force
PHP prefers older versions of the operating system build tools. Before running buildconf, you
might need to install the autoconf213 package. If you have both old and new packages installed,
later versions of PHP can be forced to use the appropriate version, for example with:
export PHP_AUTOCONF=autoconf-2.13
export PHP_AUTOHEADER=autoheader-2.13
7. Configure and build PHP following step 4 onward in the previous section Installing OCI8 Using a Local
Database or, if you intend to use Oracle Instant Client, by following the step 4 onwards in the section
Installing OCI8 Using Oracle Instant Client.
# /usr/sbin/apachectl stop
71
Installing PHP
Respond to the prompt as if it were a configure –-with-oci8 option. If you have a local
database, type the full path to the software location:
/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
extension = oci8.so
If extension_dir is not set, set it to the directory where oci8.so was installed, for example:
extension_dir = /usr/lib/php/modules
6. Set any required Oracle environment variables such as LD_LIBRARY_PATH and NLS_LANG. See Setting
Oracle Environment Variables for Apache in the chapter Connecting to Oracle Using OCI8.
7. Restart Apache:
# /usr/sbin/apachectl start
# /usr/sbin/apachectl stop
# rm /usr/lib/php/modules/oci8.so
# ./configure –-with-oci8=shared,$ORACLE_HOME
72
Upgrading PHP with PECL OCI8 on Linux
# make
# cd oci8-1.3.4
# make install
extension = oci8.so
9. If extension_dir is not set, set it to the directory where oci8.so was installed, for example:
extension_dir = /usr/lib/php/modules
10. Set any required Oracle environment variables such as LD_LIBRARY_PATH and NLS_LANG. See Setting
Oracle Environment Variables for Apache in the chapter Connecting to Oracle Using OCI8.
11. Restart Apache:
# /usr/sbin/apachectl start
73
Installing PHP
6. In the Web Server Setup screen, select the web server you want to use. This installation uses the
Apache 2.0 module option. Select Apache 2.0.x Module and click Next.
7. In the Apache Configuration Directory screen, select the location of the Apache conf directory and click
Next. For Apache 2.0, the standard configuration directory is C:\Program Files\ApacheGroup\Apache2\
conf\
8. In the Choose Items to Install screen, scroll down to the Extensions branch and add the Oracle 8
extension to the installation. Click Next.
9. In the Ready to Install PHP 5.2.7 screen, click Install. The installer installs PHP.
10. A dialog is displayed asking whether you want to configure Apache. Click Yes.
11. A confirmation message is displayed to confirm that the httpd.conf file has been updated. Click OK.
12. A confirmation message is displayed to confirm that the mime.types file has been updated. Click OK.
13. A final confirmation message is displayed to confirm that the PHP installation has completed. Click
Finish.
14. Restart Apache with Start > Programs > Apache HTTP Server 2.0.59 > Control Apache
Server > Restart. This opens a console window showing any error messages. Errors may also
be recorded in C:\Program Files\Apache Group\Apache2\logs\error.log. If you have errors,
double check your httpd.conf and php.ini files, and correct any problems.
74
Installing PHP With OCI8 on Windows
If you are using a tnsnames.ora file to define Oracle Net connect names (database aliases), copy the
tnsnames.ora file to C:\instantclient_11_1, and set the user environment variable TNS_ADMIN to
C:\instantclient_11_1.
Set any other required Oracle globalization language environment variables, such as NLS_LANG. If
nothing is set, the default local environment is used. See the Globalization chapter, for more
information on globalization with PHP and Oracle.
Unset any Oracle environment variables that are not required, such as ORACLE_HOME and
ORACLE_SID.
4. Install PHP following the steps in the previous section, Installing OCI8 Using a Local Database on
Windows.
5. Restart the Apache HTTP Server.
The pecl4win site mentioned here is no longer maintained and the steps no longer apply to recent versions of PHP. Current
alternatives are to upgrade your complete PHP distribution, or build PHP yourself. The Windows build team in the PHP community
is working on a replacement for pecl4win. This section has been retained for reference.
Note: The OCI8 DLLs for Windows require the Oracle 10g or 11g Client libraries.
5. Copy C:\php-4.4.9-Win32\php4ts.dll into the C:\php-4.4.9-Win32\sapi directory. If you run the PHP
command line interface copy it to the C:\php-4.4.9-Win32\cli directory too.
6. Copy php.ini-recommended to C:\Program Files\Apache Group\Apache2\conf\php.ini.
7. Edit php.ini and perform the following:
● Change extension_dir to C:\php-4.4.9-Win32\extensions, which is the directory
containing php_oci8.dll and the other PHP extensions.
● Uncomment (remove the semicolon from the beginning of the line) the option
extension=php_oci8.dll.
75
Installing PHP
8. For testing, it is helpful to set display_errors to On, so you see any problems in your code. Make
sure to unset it when your application is released.
9. Edit the file httpd.conf and add the following lines. Make sure to use forward slashes / instead of back
slashes \:
#
# This will load the PHP module into Apache
#
LoadModule php4_module C:/php-4.4.9-Win32/sapi/php4apache2.dll
#
# This section will call PHP for .php, .phtml, and .phps files
#
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
#
# This is the directory containing php.ini
#
PHPIniDir "C:/Program Files/Apache Group/Apache2/conf"
(Yes, Apache is repeated twice). Files with .php or .phtml extensions in this directory will be executed by
PHP. Files with a .phps extension will be displayed as formatted source code.
Version 10.1.3.0 of the Application Server (AS) comes with PHP 4.3.11. The AS 10.1.3.2 patchset adds
PHP 5.1.2. If you have a strong need to use a different version of PHP without installing a new web server,
you may be able to compile your own PHP release using these steps.
Note: Changing the version of PHP in AS is not supported (and hence is not recommended) but is technically possible in some
circumstances. For any AS support calls, regardless of whether they are PHP related, Oracle Support will ask you to revert the
changes before beginning investigation.
The technical problem faced with building PHP is that the Oracle libraries for AS do not include header
files. This can be overcome by linking PHP with Oracle Instant Client but care needs to be taken so that AS
itself does not use the Instant Client libraries. Otherwise you will get errors or unpredictable behavior.
These steps are very version and platform specific. They may not be technically feasible in all
deployments of AS.
76
Installing OCI8 with Oracle Application Server on Linux
$ cd $HOME
2. Download the Oracle 10g or 11g Basic and SDK Instant Client ZIP packages from the Instant Client
page on the Oracle Technology Network:
http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html
3. Extract the ZIP files:
$ unzip instantclient-basic-linux32-10.2.0.3-20061115.zip
$ unzip instantclient-sdk-linux32-10.2.0.3-20061115.zip
4. Change to the Instant Client directory and symbolically link libclntsh.so.10.1 to libclntsh.so:
$ cd instantclient_10_2
$ ln -s libclntsh.so.10.1 libclntsh.so
The Instant Client RPMs could also be used, in which case this last step is unnecessary.
Be wary of having Instant Client in /etc/ld.so.conf since Instant Client libraries can cause conflicts
with AS. The opmnctl tool may fail with the error Main: NLS Initialization Failed!!.
5. Download PHP 5.2.7 from http://www.php.net/downloads.php and extract the file:
$ export ORACLE_HOME=$HOME/product/10.1.3/OracleAS_1
If you had enabled PHP 5 for AS 10.1.3.2, the commented line will be:
#LoadModule php5_module libexec/libphp5.so
$ export PERL5LIB=$ORACLE_HOME/perl/lib
$ export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
$ export CFLAGS=-DLINUX
77
Installing PHP
There is no need to set CFLAGS if you have AS 10.1.3.2. It is needed with AS 10.1.3.0 to avoid a
duplicate prototype error with gethostname() that results in compilation failure.
11. Configure PHP:
$ cd php-5.2.7
$ ./configure \
> --prefix=$ORACLE_HOME/php \
> --with-config-file-path=$ORACLE_HOME/Apache/Apache/conf \
> --with-apxs=$ORACLE_HOME/Apache/Apache/bin/apxs \
> --with-oci8=instantclient,$HOME/instantclient_10_2 \
> --enable-sigchild
With the older AS 10.1.2 and older Instant Client releases, some users reportedly also specified
--disable-rpath.
12. Make and install PHP
$ make
$ make install
13. Back up and update $ORACLE_HOMEApache/Apache/conf/php.ini with options for PHP 5.2.7, for
example all the new oci8 directives. Refer to $HOME/php-5.2.7/php.ini-recommended for new options.
14. The Oracle HTTP Server can now be restarted:
Reminder: these steps invalidates all support for AS, not just for the PHP component, and they should not be used in production
environments.
78
Installing PHP With PDO
# export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
# ./configure \
> --with-apxs2=/usr/sbin/apxs \
> --enable-pdo \
> --with-pdo-oci=$ORACLE_HOME \
> --enable-sigchild
Note there is no “8” in the –-with-pdo-oci option name. Review the output of configure and
check that the extension was enabled successfully before continuing.
If you want to build PDO_OCI with the Oracle Instant Client RPMs, change the –-with-pdo-oci
option to:
--with-pdo-oci=instantclient,/usr,11.1
This indicates to use the Instant Client in /usr/lib/oracle/11.1. Note the Oracle 11.1.0.6 Instant Client
RPMs have 11.1.0.1 in the package name and installation path.
If Instant Client ZIP files are used, the option should be:
--with-pdo-oci=instantclient,$HOME/instantclient_11_1,11.1
The trailing version number in this command for ZIP installs is only used for sanity checking and
display purposes.
With Instant Client ZIP files, if the error
I'm too dumb to figure out where the libraries are in your Instant Client
install
is shown it means the symbolic link from libclntsh.so to libclntsh.so.11.1 (or the appropriate version) is
missing. This link must be manually created unless the RPM files are used.
4. Make and install PHP.
# make
# make install
5. Continue from step 6 of the previous Linux section Installing OCI8 Using a Local Database to create the
79
Installing PHP
In PHP 5.2.6 and earlier you can select the Oracle 7 option if you have Oracle 8i or 9i client
libraries. This choice is not available in PHP 5.2.7 onwards.
4. Continue with the rest of the PHP installation.
5. Restart the Apache HTTP Server.
The Oracle PDO_OCI extension is now installed and configured with PHP.
80
Checking OCI8 and PDO_OCI Installation
Script 4: phpinfo.php
<?php
phpinfo();
?>
Alternatively, the script can be run in a terminal window with command-line PHP:
$ php phpinfo.php
In the output, check the Loaded Configuration File entry shows the php.ini that the previous installation steps
set up.
The Environment section should show the Oracle environment variables. See Setting Oracle
Environment Variables for Apache in the chapter Connecting to Oracle Using OCI8.
If OCI8 was installed, there will be a section for it. The parameter values are discussed in later chapters:
81
Installing PHP
82
CHAPTER 8
83
Installing Zend Core for Oracle
(http://otn.oracle.com/php).
2. Log in or su as root if you are not already.
$ su
Password:
3. Extract the contents of the downloaded Zend Core for Oracle software file. This example uses the
Linux 64-bit install. If you are using the 32-bit install, the file name may vary slightly.
# cd ZendCoreForOracle-2.5.0-linux-glibc23-amd64
# ./install -g
5. Click OK. The Zend Core for Oracle license agreement is displayed.
84
Installing Zend Core for Oracle
6. Click Yes. The Zend Core for Oracle installation location screen is displayed.
7. Specify the location for installing Zend Core for Oracle: accept the default; or enter your preferred
location. Click OK. The Zend Core for Oracle password screen is displayed.
85
Installing Zend Core for Oracle
8. Enter a password for the Zend Core for Oracle Administration Console. This is the password for the
web-based interface to Zend Core for Oracle. Confirm the password and click OK. The Zend Core for
Oracle installation options screen is displayed.
9. Select the Zend Core for Oracle components you want to install. We suggest you select Configure
Apache Webserver, and Install Oracle Client. You may optionally enter your Zend network user ID
and password to be able to use the Zend Core Console to track when updates to Zend Core and PHP
components are available. If you have not registered, or do not want to track updates, make sure the
Configure Zend Network is not selected. Click OK. The Zend Core for Oracle select web server screen
is displayed.
86
Installing Zend Core for Oracle
Figure 65: Zend Core for Oracle select web server screen.
10. Zend Core for Oracle can install Apache if you don’t have it on your system. If you want to install and
configure Apache, select Install the Zend Core bundled Apache, or if you want to use an existing web
server, select the web server from the list. This installation assumes that you have selected to use an
existing Apache server already installed on your machine. Click OK. The Zend Core for Oracle virtual
host selection screen. screen is displayed.
11. Select Configure Zend Core on the main host, and click OK. The Zend Core for Oracle Apache
configuration details screen is displayed.
87
Installing Zend Core for Oracle
12. Confirm the configuration details for your Apache installation. Click OK. The Zend Core for Oracle
Apache installation method screen is displayed.
13. Select Apache Module as the installation method, and click OK. You can also use the FastCGI option
if you prefer. The installer unpacks the installation files and installs Zend Core for Oracle. The Zend
Core for Oracle further installation options screen is displayed.
88
Installing Zend Core for Oracle
14. Select Finish installation and click OK. The Zend Core for Oracle installation successful screen is
displayed.
15. This screen contains useful configuration commands and the URL for the Zend Core for Oracle
Administration Console. Take note of the information.
The Zend Core for Oracle installation is now complete.
#UserDir "disable"
89
Installing Zend Core for Oracle
UserDir public_html
3. As your normal user (not root), create a directory called public_html in your home directory, and
change directory to the newly created directory, enter the following commands in a command
window:
# cd $HOME
# mkdir public_html
# cd public_html
4. Create a file called hello.php that contains the following PHP code:
<?php
echo "Hello world!";
?>
5. Make sure the permissions on any files in the public_html directory, and the directories above it are set
to 755 so the web server can read and execute them.
6. Open a web browser and enter the following URL in your browser:
http://127.0.0.1/~username/hello.php
The line Hello world! appears in the browser. Any errors in your PHP code are displayed as
you have configured PHP to display errors.
90
Installing Zend Core for Oracle
4. In the Zend Core for Oracle Welcome screen, click Next. The Zend Core for Oracle License Agreement
screen is displayed.
5. Read and accept the terms of the license, and click Next. The Zend Core for Oracle Setup Type screen
is displayed.
91
Installing Zend Core for Oracle
6. On Windows platforms, you can choose to perform a Complete installation, or a Custom installation.
This installation procedure assumes you select the Custom installation. If you prefer, select the
Complete installation for the default install options. Click Next. The Zend Core for Oracle Choose
Destination Location screen is displayed.
7. Specify the location for installing Zend Core for Oracle; accept the default; or enter your preferred
location. Click Next. The Zend Core for Oracle Select Feature screen is displayed.
92
Installing Zend Core for Oracle
8. Select Zend Core PHP and Extensions, Zend Core Administration, and optionally Oracle Instant
Client and Zend Framework. Click Next. The Zend Core for Oracle Web Server Selection screen is
displayed.
9. If you have an Apache install already, select Specify Apache’s location, or if you do not have Apache
installed, select Install Zend Core's bundled Apache 2.2.4. Click Next. If you selected to install Zend
Core's bundled Apache server, the Zend Core for Oracle Apache port number screen is displayed.
93
Installing Zend Core for Oracle
10. If you have chosen to use an existing Apache install, select the Apache root folder. If you have chosen
to install a new Apache server, select the port number you want Apache to listen on. Click Next. The
Zend Core for Oracle Extension Association screen is displayed.
11. Select the extensions you want to associate with PHP from the check boxes and click Next. The Zend
Core for Oracle Administration Password screen is displayed.
94
Installing Zend Core for Oracle
12. Enter a password for the Administration Console. Confirm the password and click Next. The Zend
Core for Oracle Zend Network Subscription screen is displayed.
13. On the Zend Network Subscription screen you may optionally enter your Zend network user ID and
password to be able to use the Zend Core Console to track when updates to Zend Core and PHP
components are available. If you have not registered, or do not want to track updates, select No. Click
Next. The Zend Core for Oracle Proxy Configuration screen is displayed.
95
Installing Zend Core for Oracle
14. If you use a proxy server to connect to the Internet, select Yes to enter the the proxy server information.
Otherwise, select No. Click Next. The Zend Core for Oracle Ready to Install screen is displayed.
15. Click the Install button to begin the installation. The installer runs through the installation. The Zend
Core for Oracle Installation Complete screen is displayed.
96
Installing Zend Core for Oracle
16. The final installation page is displayed confirming the installation is complete. Click Finish.
Zend Core for Oracle is installed. You may need to restart Windows if you see that some of the PHP
extensions aren't loaded correctly.
<?php
echo "Hello world!";
?>
2. Open a web browser and enter the following URL in your browser:
http://127.0.0.1/hello.php
The line Hello world! appears in the browser. Any errors in your PHP code are displayed if you
have configured PHP to display errors.
97
Installing Zend Core for Oracle
2. Enter the GUI password that you provided during Zend Core for Oracle installation. Click the login
>>> icon.
3. Click the Configuration tab to display the configuration options.
4. Click the + icon to expand the Error Handling and Logging configuration entry.
5. Set the display_errors directive to On to enable the display of errors in the HTML script output during
development. Make sure you set this back to Off before you release any applications you build as
users will see the errors and gain information about your system that you otherwise don’t want them
to see or know.
6. Because there are unsaved changes, the "Unsaved configuration" message appears under the page
header. Click Save Settings to save the configuration change.
98
Configuring Zend Core for Oracle
7. Because you have made configuration changes, you must restart the Apache web server. Under the
page header notice the "Please Restart Apache" message reminding you to do so. Click Restart Server
to restart the Apache server. If you are using a Windows operating system, you should restart the
Apache server using the Services dialog in Control Panel, or the Apache Monitor in the system tray.
8. Click Logout to exit the Zend Core for Oracle Administration page.
99
Installing Zend Core for Oracle
100
CHAPTER 9
Standard Connections
For basic connection to Oracle use PHP’s oci_connect() call:
$c = oci_connect($username, $password, $dbname);
You can call oci_connect() more than once in a script. If you do this and use the same username and
database name, then you get a pointer to the original connection.
Each connection is separate from any other. This lets you have more than one database session open at the
same time. This can be useful when you want to do database operations independently from each other.
Persistent Connections
Persistent connections can be made with oci_pconnect():
$c = oci_pconnect($username, $password, $dbname);
101
Connecting to Oracle Using OCI8
Persistent connections are not automatically closed at the end of a PHP script and remain open in PHP’s
persistent connection cache for reuse in other scripts. This makes oci_pconnect() fast for frequently used
web applications. Reconnection does not require re-authentication to the database.
Each cache entry uses the username, the database name, the character set and the connection privilege
to ensure reconnections are the same as the original.
Figure 86: Persistent connections are cached in PHP and held open to the database.
Limits on the number of persistent connections in the cache can be set, and connections can be
automatically expired to free up resources. The parameters for tuning persistent connections are discussed
later in this chapter.
When the PHP process terminates, the connection cache is destroyed and all database connections
closed. This means that for command line PHP scripts, persistent connections are equivalent to normal
connections and there is no performance benefit.
102
Oracle Database Name Connection Identifiers
In this guide, we assume the database is on the same machine as Apache and PHP so we use localhost:
$c = oci_connect('hr', 'hrpwd', 'localhost/XE');
Depending on your network configuration, you may need to use the equivalent IP address:
$c = oci_connect('hr', 'hrpwd', '127.0.0.1/XE');
The Easy Connect string is JDBC-like. The Oracle 10g syntax is:
[//]host_name[:port][/service_name]
If PHP links with Oracle 11g libraries, the enhanced 11g syntax can be used:
[//]host_name[:port][/service_name][:server_type][/instance_name]
The prefix // is optional. The port number defaults to Oracle’s standard port, 1521. The service name
defaults to same name as the database's host computer name. The server is the type of process that Oracle
uses to handle the connection, see the chapter on Database Resident Connection Pooling for an example.
The instance name is used when connecting to a specific machine in a clustered environment.
While it is common for Oracle database sites to use port 1521, it is relatively rare that a database will be
installed with the service name set to the host name. You will almost always need to specify the connection
identifier as at least host_name/service_name.
The lsnrctl command on the database server shows the service names that the Oracle Net listener
accepts requests for.
$ lsnrctl services
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:0
LOCAL SERVER
Service "XE" has 1 instance(s).
Instance "XE", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:55 refused:0 state:ready
LOCAL SERVER
. . .
103
Connecting to Oracle Using OCI8
The syntax can be more complex than this example, depending on the database and Oracle Net features
used. For example, by using the full syntax, you can enable features like load balancing and tweak packet
sizes. The Easy Connect syntax does not allow this flexibility.
In PHP you would use the connect name MYA to connect to the database:
$c = oci_connect($username, $password, 'MYA');
PHP needs to be able to find the tnsnames.ora file to resolve the MYA name. The directory paths that Oracle
searches for tnsnames.ora depend on your operating system. On Linux, the search path includes:
$TNS_ADMIN/tnsnames.ora
/etc/tnsnames.ora
$ORACLE_HOME/network/admin/tnsnames.ora
If PHP was compiled using the Oracle libraries in an ORACLE_HOME-style install, then set ORACLE_HOME
before starting the web server. The pre-supplied $ORACLE_HOME/network/admin/tnsnames.ora will then
automatically be found. In Oracle Database XE, $ORACLE_HOME is:
104
Oracle Database Name Connection Identifiers
/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
If PHP was built with Oracle Instant Client, or Zend Core for Oracle is used, then put tnsnames.ora in
/etc, or set TNS_ADMIN to the directory containing it prior to starting the web server.
Make sure Apache has read permissions on tnsnames.ora. In some ORACLE_HOME-style installs, the
default permissions on the file are restrictive.
Note: Do not set Oracle environment variables in PHP scripts with putenv() because Oracle libraries may be loaded and
initialized before the scripts run.
The OCI8 extension always needs to find Oracle libraries, error message data and optionally needs the
tnsnames.ora file. Not finding the libraries can lead to Apache startup errors (see the Apache error log file)
about OCI8 not being initialized, and to script runtime errors like:
PHP Fatal error: Call to undefined function oci_connect()
This error means that the OCI8 extension is not available. Check that ORACLE_HOME and/or
LD_LIBRARY_PATH on Linux, or PATH on Windows are valid.
Another potential source of problems is having multiple installations of Oracle libraries. Using
mismatched versions of Oracle libraries and files can lead to PHP returning errors such as:
ORA-12705: Cannot access NLS data files or invalid environment specified
or:
OCIEnvNlsCreate() failed. There is something wrong with your system
Users of older versions of OCI8 may see the one of the equivalent errors:
OCIEnvCreate() failed. There is something wrong with your system
or
OCIEnvInit() failed. There is something wrong with your system
This environment initialization problem is common on Windows when multiple Oracle environments are
installed and PHP is not using the correct one. (Some users move the Instant Client DLLs to the Apache or
PHP directory as a quick solution).
If you are using an Oracle Database 10g Release 2 database other than the Express Edition (Oracle
Database XE), you may need to give the Apache process access to Oracle’s libraries and globalization data.
Refer to the $ORACLE_HOME/install/changePerm.sh script in later Oracle patchsets.
If an error like this occurs:
105
Connecting to Oracle Using OCI8
it means two problems happened. First, a connection error ORA-12154 occurred. The second problem is the
“Error while trying to retrieve text” message, indicating Oracle’s message files were not found, most likely
because ORACLE_HOME is not correctly set.
The expected description for ORA-12154 is actually:
ORA-12154: TNS:could not resolve service name
indicating that the connection string is not valid, or the tnsnames.ora file (if one is being used) wasn't
readable. The result is that OCI8 does not know which machine to connect to. A similar error:
ORA-12514 TNS:listener does not currently know of service requested in connect
descriptor
means that OCI8 was able to contact a machine hosting Oracle, but the expected database is not running on
that computer. For example, if Oracle Database XE is currently running on your computer and you try to
connect to localhost/abc you will get this error.
The bottom line is that your environment should be set correctly and consistently. The Apache process
must have access to Oracle libraries and configuration files. Environment variables such as $ORACLE_HOME
must be set in the shell that starts Apache.
Script 5: phpinfo.php
<?php
phpinfo();
?>
Look at the Environment section (not the Apache Environment section) and make sure the Oracle variables are
set to the values you expect.
The variables needed are determined by how PHP is installed, how you connect, and what optional
settings are desired.
106
Setting Oracle Environment Variables for Apache
With Oracle Database XE, you can set the shell's environment by using the oracle_env.sh script:
# . /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
Note the space after the period. This command allows the script to set the environment of the shell itself.
On other editions of the Oracle database, the /usr/local/bin/oraenv or /usr/local/bin/coraenv scripts set the
environment. Run one of these scripts before starting Apache. You will be prompted for the database to
connect to:
# . /usr/local/bin/oraenv
ORACLE_SID = [] ? orcl
If your database is on a remote machine, you will have to set the environment manually.
To simplify things, you may create a script to set the environment and start Apache, for example:
Script 6: start_apache
#! /bin/sh
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
export ORACLE_HOME LD_LIBRARY_PATH NLS_LANG
echo "Oracle Home: $ORACLE_HOME"
107
Connecting to Oracle Using OCI8
/usr/sbin/apachectl start
On Oracle Enterprise Linux, instead of creating a shell script to call apachectl, you can add environment
variables to the end of /etc/sysconfig/httpd:
...
export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
export NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
Some Apache 2 installations use an “envvars” script in the Apache bin directory to set variables. Using
Apache's SetEnv directive is sometimes insufficient. The important thing is to set the environment before
Apache loads any Oracle library.
If Apache is started automatically when your machines boots, you will need to make sure Apache has
the environment set at boot time.
Note: Do not set Oracle environment variables in PHP scripts with putenv(). The web server may load Oracle libraries and
initialize Oracle data structures before running your script. Using putenv() causes hard to track errors as the behavior is not
consistent for all variables, web servers, operating systems, or OCI8 functions. Variables should be set prior to Apache starting.
Zend Core for Oracle is automatically configured to use Oracle Instant Client. As part of the install, it
modifies /usr/local/Zend/apache2/bin/envvars to add LD_LIBRARY_PATH. The envvars file is called by apachectl.
Make sure you preserve this file inclusion if you later modify the apachectl script. The Oracle environment
variables you may want to set explicitly for Zend Core for Oracle are NLS_LANG and TNS_ADMIN.
If PHP was built with Oracle Instant Client, it can be convenient to create a file
/etc/ld.so.conf.d/instantclient.conf containing the path to the Instant Client libraries:
/usr/lib/oracle/11.1.0.1/client/lib
Run ldconfig to rebuild the system's library search path. Only do this if there is no other Oracle software
in use on the machine. The removes the need to set LD_LIBRARY_PATH everywhere, but upgrading
requires remembering to change the path.
If you have multiple versions of Oracle installed, you might be able to use LD_PRELOAD or equivalent to
force Apache to load the desired Oracle libclntsh.so file. PHP should be run using the same version of the
Oracle libraries as were used to build the PHP library and executables.
Any uncommitted data is rolled back. The function has no effect on persistent connections. (See the chapter
on connection pooling for caveats).
108
Closing Oracle Connections
If a long running script only spends a small amount of time interacting with the database, close
connections as soon as possible to free database resources for other users. When the Apache or PHP
command line process terminates, all database connections are closed.
The oci_close() function was a “no-op” prior to the re-factoring of OCI8. That is, it had no
functional code, and never actually closed a connection. You could not explicitly close connections even if
you wanted to! You can revert to this old behavior with a php.ini setting:
oci8.old_oci_close_semantics = On
Script 7: close.php
<?php
// oci_free_statement($s);
oci_close($c);
?>
you will see that HR is still shown as connected until the sleep() finishes and the script terminates. This is
because the oci_parse() call creating the statement resource $s internally increases the reference count
on $c. The database connection is not closed until PHP's end-of-script processing destroys $s.
An oci_free_statement($s) call will explicitly decrease the reference count on $c allowing the
oci_close() to have an immediate effect. If this freeing call is uncommented in the example, the
SQL*Plus query will show the database connection was explicitly closed before the sleep() starts.
Variables and other kinds of resources may also increase the reference count on a connection, and in
turn have their own reference count which must be zero before they can destroyed. The reference count
will decrease if the variables goes out of scope or are assigned new values. A common idiom is to assign
null to the statement resource:
$s = null;
109
Connecting to Oracle Using OCI8
In the next example, $c1 and $c2 are the one database connection (because oci_connect() returns the
same connection resource when called more than once in a script). The physical database connection is
released only when $c1 and c2 are both closed. Also the statement resource must be freed, which happens
automatically when do_query() completes and $s goes out of scope.
Script 8: close2.php
<?php
?>
Variable $c1 is not usable after oci_close($c1) is executed: PHP has dissociated it from the connection.
The script outcome is that the first and third queries succeed but the second one fails.
110
Closing Oracle Connections
The first time this is called in a browser, the two dates returned by the queries are:
18-APR-07
2007-04-18 14:21:09
The first date has the system default format. The second is different because the ALTER SESSION
command changed the date format.
Calling the script a second time gives:
2007-04-18 14:21:10
2007-04-18 14:21:10
The persistent connection has retained the session setting and the first query no longer uses the system
default format. This only happens if the same Apache process serves both HTTP requests. If a new Apache
process serves the second request then it will open a new connection to the database, which will have the
original default date format. (Also the system will have two persistent connections left open instead of
one.)
Session changes like this may not be a concern. Your applications may never need to do anything like
it, or all connections may need the same values anyway. If there is a possibility incorrect settings will be
inherited, make sure your application resets values after connecting.
When not specified or NULL, the NLS_LANG environment variable setting is used. This setting determines
how Oracle translates data when it is transferred from the database to PHP. If the database character set is
not equivalent to the OCI8 character set, some data may get converted abnormally. It is recommended to
set this parameter to improve performance and guarantee a known value is used.
Oracle Database XE is available in two distributions, one with a database character set of
WE8MSWIN1252 and the other of AL32UTF8 (Oracle's name for UTF-8).
111
Connecting to Oracle Using OCI8
It is up to your application to handle returned data correctly, perhaps by using PHP’s mb_string,
iconv or intl extensions. Globalization is discussed in more detail in the Globalization chapter.
The SYSDBA and SYSOPER privileges give you the ability to change the state of the database, perform data
recovery, and even access the database when it has not fully started. Be very careful about exposing this on
customer facing web sites, that is, do not do it! It might be useful for command line PHP scripts in very
special circumstances.
When you installed Oracle, the sys administrative user account was automatically created with the
password that you supplied. All base tables and views for the database data dictionary are stored in the
SYS schema – they are critical for the operation of Oracle. By default, the SYSDBA privilege is assigned
only to user sys, but it and SYSOPER can manually be granted to other users.
For / as sysdba access (where no username and password is used) in PHP, all these must be true:
● The operating system process user is run as a member of the OS dba group
● PHP is linked with the ORACLE_HOME software (that is, not Oracle Instant Client, or Zend Core for
Oracle) that the database is using
● The database is your default local database, for example, specified by the ORACLE_SID environment
variable
This would be typically be done by compiling and running PHP with the Oracle libraries used by the
database.
Scripts that contain operating system authenticated privileged connection calls will connect
successfully:
$c = oci_connect("/", "", null, null, OCI_SYSDBA);
112
Optional Connection Parameters
If PHP is invoked by Apache, the library path needs to contain the same Oracle libraries. Also the nobody
user must be in the privileged Oracle group, for example, in the operating system dba group. This is not
recommended.
Similarly, AS SYSOPER access is available for members of the oper group. In PHP use OCI_SYSOPER in
oci_connect().
On Windows, the operating system groups are called ORA_DBA and ORA_OPER.
The database will not permit the (possibly physically) “remote” operating system to authorize access. An
extra Oracle password file needs to be created and a password needs to be used in the database connection.
To set up a password file, check the database initialization parameter remote_login_passwordfile
is EXCLUSIVE. This is the default value. To do this, log in to the operating system shell as the Oracle
database software owner, and start SQL*Plus:
$ sqlplus / as sysdba
A setting of EXCLUSIVE means the password file is only used with one database and not shared among
several databases on the host, and enables you to have multiple users connect to the database as
themselves, and not just as sys. If this parameter is not set to EXCLUSIVE, you can change the value with the
SQL*Plus and enter a command similar to the following command:
SQL> alter system set remote_login_passwordfile='exclusive'
2 scope=spfile sid='*';
This creates a password file named acct.pwd that allows up to 10 privileged users with different passwords
(this number can be changed later). The file is initially created with the password secret for users connecting
with the username sys.
To add a new user to the password file use SQL*Plus:
SQL> create user c1 identified by c1pw;
113
Connecting to Oracle Using OCI8
One feature of a privileged connection is that if you issue a SELECT USER FROM DUAL statement, any
OCI_SYSDBA connection will show the user as sys not c1. A connection made with OCI_SYSOPER will show
a user of public.
External Authentication
OCI8 1.3 supports Oracle External Authentication. Instead of storing a username and password in PHP
scripts and authenticating against a username and password stored in the database, credentials can be
authenticated by an outside system such as Oracle Wallet. The operating system user running the Apache
process could be granted read access to the wallet using Access Control Lists.
To use external authentication, first configure the database to use an external authentication method.
Refer to Oracle documentation for details.
In OCI8, pass the flag OCI_CRED_EXT as the session_mode parameter to oci_connect(),
oci_new_connect() or oci_pconnect():
OCI_CRED_EXT can only be used with username of "/" and a empty password. The php.ini parameter
oci8.privileged_connection may be On or Off.
The flag may be combined with the existing OCI_SYSOPER or OCI_SYSDBA modes. For example:
$c = oci_connect("/", "", $db, null, OCI_CRED_EXT+OCI_SYSOPER);
114
Changing the Database Password
Script 9: connectexpired.sql
<?php
115
Connecting to Oracle Using OCI8
return($c);
}
function show_user($c)
{
$s = oci_parse($c, "select user from dual");
oci_execute($s);
oci_fetch_all($s, $res);
echo "You are connected as {$res['USER'][0]}<br>\n";
}
?>
Before running the PHP script, first run connectexpired.sql as a privileged user:
$ sqlplus system/systempwd@localhost/XE @connectexpired.sql
The password change call oci_password_change($db, $un, $pw1, $pw2); differs from the example
in the previous section Changing Passwords On Demand in that it passes a database connection identifier
identifier, localhost/XE, as the first parameter instead of passing the connection resource of an already
opened connection. This new usage connects to the database and changes the password to $pw2 all at the
same time. Subsequent scripts will be able to connect using the new password.
This method of connecting with oci_password_change() also works if the password has not expired.
116
Tuning Oracle Connections in PHP
If you do not enter a character set, PHP has to determine a client character set to use. This may involve a
potentially expensive environment lookup. Use the appropriate character set for your requirements.
One way to optimize this is to simply set the environment variable NLS_DATE_FORMAT in the shell that
starts the web server. Each PHP connection will have the required date format automatically.
Sometimes different database users should have different session values so setting NLS_DATE_FORMAT
globally is not possible. When oci_connect() is called multiple times in the one script or when persistent
connections are used, the ALTER SESSION can be moved to a logon trigger. This is because session settings
are retained in cached connections. Using a trigger means the date format is only set when the physical
database connection is created the first time. The trigger does not fire when subsequent connect calls return
a cached connection.
A logon trigger can be created using SQL*Plus by connecting as a privileged database user:
$ sqlplus system/systempwd@localhost/XE
117
Connecting to Oracle Using OCI8
This trigger sets the session’s date format every time hr connects to the database from any client tool. Note
the use of single quotes. The date format string is enclosed in a pair of two quotes, which is the Oracle
method of nesting single quotes inside a quoted string.
In PHP, the connection function can simply become:
function my_connect($un, $pw, $db)
{
$c = oci_pconnect($un, $pw, $db);
return $c;
}
Oracle does all the work setting the date format when the physical database connection is originally
established and first used. When PHP later uses a cached connection it will already have the desired date
format.
$c = my_connect('hr', 'hrpwd', 'localhost/XE');
$s = oci_parse($c, 'select sysdate from dual');
oci_execute($s);
$row = oci_fetch_array($s, OCI_ASSOC);
echo $row['SYSDATE'] . "<br>\n";
This connects as hr and queries the current date. It shows the new format set by the trigger:
2007-05-04 13:50:35
If the connection is any user other than hr the standard default date format will be displayed:
04-MAY-07
Using a trigger like this only works when the required session setting is the same for all PHP application
users that share the same database user name.
If you cannot use a trigger because each PHP invocation needs different settings, and you need more
than one session value changed, you can put the statements inside a PL/SQL procedure. After connecting
you can call the PL/SQL procedure, which is one oci_execute() call to the database, instead of multiple
calls to execute ALTER SESSION statements.
The suggested practice is to use LOGON triggers only for setting session attributes and not for executing
per PHP-connection logic such as custom logon auditing.
118
Managing Persistent Connections
oci8.max_persistent
This parameter limits the number of persistent connections cached by each Apache-PHP process. It is a not
a system-wide restriction on database usage. When the limit is reached by a PHP process, all
oci_pconnect() calls are treated like oci_connect() calls and are closed at the end of the script. Setting
it to -1 (the default) means there is no limit. If your PHP scripts connect using the same database
credentials, each PHP process will only have one connection entry in its cache.
oci8.persistent_timeout
This parameter is the length in seconds that an Apache process maintains an idle persistent connection.
Setting this parameter to -1 (the default) means there is no timeout. If a connection has been expired, the
next time oci_pconnect() is called a new connection is created. It is not an asynchronous timer.
The expiry check happens whenever any PHP script finishes, regardless of whether OCI8 calls were
made. This is an unresolvable weakness with PHP: you want idle connections to be closed, but if PHP is
idle then no scripts execute and the timeout is not triggered. Luckily Oracle 11g connection pooling makes
this issue irrelevant.
oci8.ping_interval
There is no guarantee that the connection descriptor returned by oci_pconnect() represents a usable
connection to the database. During the time PHP stored an unaccessed connection resource in its cache, the
connection to the database may have become unusable due to a network error, a database error, or being
expired by the DBA. If this happens, oci_pconnect() appears to be successful but an error is thrown
when the connection is later used, for example in oci_execute(). The ping interval is an easy way to
improve connection reliability for persistent connections.
119
Connecting to Oracle Using OCI8
This parameter is the number of seconds that pass before OCI8 does a ping during a oci_pconnect()
call. If the ping determines the connection is no longer usable, a new connection is transparently created
and returned by oci_pconnect(). To disable pinging, set the value to -1. When set to 0, PHP checks the
database each time oci_pconnect() is called. The default value is 60 seconds.
Regardless of the value of oci8.ping_interval, oci_pconnect() will always check an internal
Oracle client-side value to see if the server was known to be available the last time anything was received
from the database. This is a quick operation. Setting oci8.ping_interval physically sends a message to
the server, causing a “round-trip” over the network. This is a “bad thing” for scalability.
Good application design gracefully recovers from failures. In any application there are a number of
potential points of failure including the network, the hardware and user actions such as shutting down the
database. Oracle itself may be configured to close idle connections and release their database resources.
The database administrator may have installed user profiles with CREATE PROFILE IDLE_TIMEOUT, or
the Oracle network layer may time out the network.
You need to balance performance (no pings) with having to handle disconnected Oracle sessions (or
other changes in the Oracle environment) in your PHP code. For highest reliability and scalability it is
generally recommended that you do not use oci8.ping_interval, but do error recovery in your
application code.
Parameter Purpose
MaxRequestsPerChild Sets how many requests Apache will serve before restarting.
MaxSpareServers Sets how many servers to keep in memory that are not handling requests.
KeepAlive Defines whether Apache can serve a number of documents to the one user
over the same HTTP connection.
Setting MaxRequestsPerChild too low will cause persistent connections to be closed more often than
perhaps necessary, removing any potential performance gain of caching. Many sites use
MaxRequestsPerChild to restart PHP occasionally, avoiding any potential memory leaks or other
unwanted behaviors.
John Coggeshall’s article Improving Performance Through Persistent Connections discusses Apache
configuration in more depth.
120
Managing Persistent Connections
● Use Oracle Database 11g connection pooling. See the chapter on PHP Scalability and High Availability.
● Set oci8.persistent_timeout.
● Expire Apache processes with Apache configuration parameters.
● Reduce the number of database user credentials used by the application.
Each persistent connection that uses a different set of credentials will create a separate process on the
database host. If the application connects with a large number of different schemas, the number of
persistent connections can be reduced by connecting as one user who has been granted permission to
the original schemas' objects.
The application can either be recoded to use explicit schema names in queries:
Or, if the application is large, the first statement executed can set the default schema. Subsequent
queries will return:
Setting the default schema this way requires an extra database operation but, depending on the
application, it may be bundled in a PL/SQL block that does other operations.
LISTENER=(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=tcp)(HOST=sales)(PORT=1521)(RATE_LIMIT=4))
121
Connecting to Oracle Using OCI8
could be evaluated by Oracle 10g as using the Easy Connect syntax to host machine abc (using the default
port and database service) or using a net alias abc configured in a tnsnames.ora file.
The flexibility can cause a delay in getting an error back if the connection details are invalid or a
database is not operational. Both internal connection methods may be tried in sequence adding to the time
delay before a PHP script gets the error. This depends on your Oracle Net and DNS settings.
How Oracle is configured to authenticate the user’s credentials (here a username and password) can
also have an effect.
The issue is not specific to PHP. In SQL*Plus the connection:
$ sqlplus hr/hrpwd@abc
This DIRECTORY_PATH value disables Easy Connect’s hostname:port/service syntax. Instead of using
Easy Connect syntax, a connect name and tnsnames.ora file would be needed. (This may also add a small
measure of security if your scripts accidentally allow arbitrary connection identifiers. It stops users
guessing database server hostnames they should not know about.)
Setting AUTHENTICATION_SERVICES to NONE stops different authentication methods being tried.
Although this may prevent privileged database connections, which require operating system authorization,
this, again, might be beneficial. Check the Oracle Net documentation for details and for other
authentication methods and authentication-type specific timeout parameters.
122
Oracle Net and PHP
123
Connecting to Oracle Using OCI8
The left hand column is the timestamp of each low level call. Here, it shows a relatively big time delay
doing name resolution for the non-existent host #c. The cause is the configuration of the machine network
name resolution.
The logging infrastructure of Oracle 11g changed significantly. Look for tracefiles in a sub-directory of
the Oracle diagnostic directory, for example in $HOME/oradiag_cjones/diag/clients/user_cjones for command
line PHP. For Oracle Net log files created by a web server running PHP, look in /root/oradiag_root if no other
path was configured.
This is also recommended if you are using Oracle RAC (“Real Application Clusters”). For both RAC and
non-RAC database, the DBMS_SERVICE package lets you specify workload management goals. This is a
detailed topic; refer to Oracle’s manuals for more information.
Finally, make sure that your applications are as efficient as possible. This minimizes the length of time
connections are held.
124
CHAPTER 10
Query Example
A basic query in OCI8 is:
<?php
125
Executing SQL Statements With OCI8
oci_free_statement($s);
?>
In PHP, single and double quotes are used for strings. Strings with embedded quotes can be made by
escaping the nested quotes with a backslash, or by using both quoting styles. The next example shows
single quotes around the city name. To make the query a PHP string it, therefore, must enclosed in double
quotes:
$s = oci_parse($c, "select * from locations where city = 'Sydney'");
PHP 5.3 introduces a NOWDOC syntax that is useful for embedding quotes and dollar signs in strings, such as
this example that queries one of Oracle's administration views V$SQL:
$sql = <<<'END'
select parse_calls, executions from v$sql
END;
126
SQL Statement Execution Steps
$s = oci_parse($c, $sql);
. . .
Freeing Statements
In long scripts it is recommended to close statements when they are complete:
oci_free_statement($s);
This allows resources to be reused efficiently. For brevity, and because the examples execute quickly, most
code snippets in this book do not follow this practice.
Oracle Datatypes
Each column has a datatype, which is associated with a specific storage format. The common built-in
Oracle datatypes are:
● CHAR
● VARCHAR2
● NUMBER
● DATE
● TIMESTAMP
● INTERVAL
● BLOB
● CLOB
● BFILE
● XMLType
The CHAR, VARCHAR2, NUMBER, DATE, TIMESTAMP and INTERVAL datatypes are stored directly in
PHP variables. BLOB, CLOB, and BFILE datatypes use PHP descriptors and are shown in the Using Large
Objects in OCI8 chapter. XMLTypes are returned as strings or LOBs, as discussed in the Using XML with
Oracle and PHP chapter. Oracle's NCHAR, NVARCHAR2, and NCLOB types are not supported in the OCI8
extension.
Fetch Functions
There are a number of OCI8 fetch functions, all documented in the PHP Oracle OCI8 Manual. Table 7 lists
the functions.
127
Executing SQL Statements With OCI8
Some of the functions have optional parameters. Refer to the PHP manual for more information.
The function commonly used is oci_fetch_array():
$rowarray = oci_fetch_array($statement, $mode);
128
Fetch Functions
The two columns are index 0 and index 1 in the result array. This displays:
Roma - 00989
Venice - 10934
Tokyo - 1689
Hiroshima - 6823
Southlake – 26192
. . .
Some of the fetch functions do not return NULL data by default. This can be tricky when using numerically
indexed arrays. The result array can appear to have fewer columns than selected, and you can’t always tell
which column was NULL. Either use associative arrays so the column names are directly associated with
their values, or specify the OCI_RETURN_NULLS flag:
$res = oci_fetch_array($s, OCI_NUM+OCI_RETURN_NULLS);
This displays:
00989
10934
1689
6823
26192
. . .
In an associative array there is no table prefix for the column name. If you join tables where the same
column name occurs with different meanings in both tables, use a column alias in the query. Otherwise
only one of the similarly named columns will be returned by PHP. This contrived example selects the
region_id column twice:
$s = oci_parse($c, "select region_name,
regions.region_id as myreg,
country_name,
countries.region_id
from countries
inner join regions
on countries.region_id = regions.region_id");
oci_execute($s);
129
Executing SQL Statements With OCI8
The query column alias MYREG is used as the index to the result array for one of the region_id columns.
The script output is:
Americas 2 - Argentina 2
Asia 3 - Australia 3
Europe 1 - Belgium 1
Americas 2 - Brazil 2
Americas 2 - Canada 2
. . .
Fetching as an Object
Fetching as objects allows property-style access to be used.
$s = oci_parse($c, 'select * from locations');
oci_execute($s);
while ($row = oci_fetch_object($s)) {
var_dump($row);
}
This shows each row is an object and gives its properties. The var_dump() function prints and
automatically formats the variable $row. This function is commonly used for debugging PHP scripts. The
output is:
object(stdClass)#1 (6) {
["LOCATION_ID"]=>
string(4) "1000"
["STREET_ADDRESS"]=>
string(20) "1297 Via Cola di Rie"
["POSTAL_CODE"]=>
string(5) "00989"
["CITY"]=>
string(4) "Roma"
["STATE_PROVINCE"]=>
NULL
["COUNTRY_ID"]=>
string(2) "IT"
}
. . .
130
Fetch Functions
The define is done before execution so Oracle knows where to store the output. The column name in the
oci_define_by_name() call must be in uppercase. The result is:
City is Roma
City is Venice
City is Tokyo
City is Hiroshima
City is Southlake
. . .
The oci_define_by_name() function has an optional type parameter that is useful, for example, to
specify that the PHP variable should be an integer instead of a string.
The var_dump() function shows the PHP datatype for numeric columns is string:
131
Executing SQL Statements With OCI8
array(3) {
["CN1"]=>
string(2) "71"
["CN2"]=>
string(4) "70.6"
["DIFF"]=>
string(2) ".4"
}
The conversion from number to string is done by Oracle and means Oracle formats the data according to
its globalization settings. In some regions the decimal separator for numbers might be a comma, causing
problems if PHP later casts the string to a number for an arithmetic operation. Oracle’s default formats can
be changed easily and it is recommended to explicitly set them so your scripts are portable. See Oracle
Number Formats in the chapter Globalization.
Arithmetic calculations are handled with different precision in PHP. The previous example showed the
result of the subtraction was the expected value. If the code is changed to do the subtraction in PHP:
$row = oci_fetch_array($s, OCI_ASSOC);
$diff = $row['CN1'] - $row['CN2'];
echo "PHP difference is " . $diff . "\n";
PHP has a php.ini parameter precision which determines how many significant digits are displayed in
floating point numbers. By default it is set to 14.
In this example the default format was the Oracle American standard of DD-MON-YY so the output is:
Hire date is 17-SEP-87
132
Fetch Functions
The default format can be changed with Oracle's globalization settings before or after PHP starts. See the
chapter Globalization.
Regardless of the default, any statement can use its own custom format. When querying, use the
TO_CHAR() function. When inserting, use TO_DATE():
// insert a date
$s = oci_parse($c,
"insert into mydtb (dcol)
values (to_date('2006/01/01 05:36:50', 'YYYY/MM/DD HH:MI:SS'))");
oci_execute($s);
// fetch a date
$s = oci_parse($c, "select to_char(dcol, 'DD/MM/YY') as dcol from mydtb");
oci_execute($s);
$row = oci_fetch_array($s, OCI_ASSOC);
To find the current database server time, use the SYSDATE function. Here the date and time returned by
SYSDATE are displayed:
$s = oci_parse($c,
"select to_char (sysdate, 'YYYY-MM-DD HH24:MI:SS') as now from dual");
$r = oci_execute($s);
$row = oci_fetch_array($s, OCI_ASSOC);
echo "Time is " . $row["NOW"] . "\n";
Oracle's TIMESTAMP type stores values precise to fractional seconds. You can optionally store a time zone
or local time zone. For PHP, the local time zone would be the time zone of the web server, which may not
be relevant to user located remotely.
For an example, SYSTIMESTAMP, which is analogous to SYSDATE, gives the current server time stamp
and time zone:
$s = oci_parse($c, "select systimestamp from dual");
$r = oci_execute($s);
$row = oci_fetch_array($s, OCI_ASSOC);
echo "Time is " . $row["SYSTIMESTAMP"] . "\n";
An INTERVAL type represents the difference between two date values. Intervals are useful for Oracle's
analytic functions. In PHP they are fetched as strings, like DATE and TIMESTAMP are fetched.
133
Executing SQL Statements With OCI8
The only-run-once installation sections of applications should contain almost all the CREATE TABLE
statements used. Applications in Oracle do not commonly need to create temporary tables at run time, and
it is expensive to do so. Use inline views, or join tables when required. In some cases “global temporary
tables” might be useful but one caveat is that temporary tables have no statistics for the Oracle optimizer to
evaluate.
Transactions
Using transactions to protect the integrity of data is as important in PHP as any other relational database
application. Except in special cases, you want either all your changes to be committed, or none of them.
Unnecessarily committing or rolling back impacts database performance as it causes unnecessary
network traffic (round trips) between PHP and the database.
Figure 88: Each round trip between PHP and the Database reduces scalability.
It is also causes extra processing and more IO to the database files. To maximize efficiency, use transactions
where appropriate.
OCI8’s default commit behavior is like other PHP extensions and different from Oracle’s standard. The
default mode of oci_execute() is OCI_COMMIT_ON_SUCCESS to commit changes. This can easily be
overridden in OCI8. But take care with committing and rolling back. Hidden transactional consistency
problems can be created by not understanding when commits or rollbacks occur. Such problems may not
be apparent in normal conditions, but an abnormal event might cause only part of a transaction to be
committed. Problems can also be caused by programmers trying to squeeze out absolutely optimal
performance by committing or rolling back only when absolutely necessary.
134
Transactions
Scripts that call a connection function more than once with the same credentials should make sure
transactions are complete before re-connecting. Similarly, be careful at the end of scope if the transaction
state is uncommitted.
In the following example a new record is committed when the oci_execute() call is called:
$s = oci_parse($c, "insert into testtable values ('my data')");
oci_execute($s); // automatically committed
Other users of the table will immediately be able to see the new record. Auto-committing can be handy for
single INSERTs and UPDATEs, but transactional and performance requirements should be thought about
before using the default mode everywhere.
You specify not to auto-commit but to begin a transaction with:
$s = oci_parse($c, "insert into testtest values ('my data 2')");
oci_execute($s, OCI_DEFAULT); // not committed
The PHP parameter name OCI_DEFAULT is borrowed from Oracle’s Call Interface, where the value of the C
macro with the same name is actually the default value when nothing else is specified. In PHP a better
name would have been NO_AUTO_COMMIT, but we are stuck with the awkward name.
To commit any un-committed transactions for your connection, do:
oci_commit($c);
To rollback, do:
oci_rollback($c);
Any outstanding transaction is automatically rolled back when a connection is closed or at the end of the
script.
Note: Be careful mixing and matching oci_execute() calls with both commit modes in one script, since you may commit at
incorrect times. In particular, executing a query will commit an outstanding transaction if OCI_DEAFULT is not used in the
query's oci_execute() call.
Any CREATE or DROP statement will automatically commit regardless of the oci_execute() mode. This is a feature of the
Oracle database that cannot be altered.
If all your database calls in a script are queries, or are calls to PL/SQL packages that handle transactions
internally, use:
oci_execute($s);
If you pass OCI_DEFAULT, PHP will send an explicit rollback to the database at the end of every script,
even though it is unnecessary.
135
Executing SQL Statements With OCI8
Autonomous Transactions
Oracle’s procedural language for SQL, PL/SQL, allows you to do autonomous transactions, which are
effectively sub-transactions. An autonomous transaction can be committed or rolled back without affecting
the main transaction. This might be useful for logging data access - an audit record can be inserted even if
the user decides to rollback their main change. An example is:
You could call the PL/SQL function from PHP to log events:
<?php
oci_rollback($c);
?>
Even though OCI_DEFAULT is used, the autonomous transaction commits to the log table. This commit
does not commit the script insert into mytable. After running logger.php, the tables contain:
SQL> select * from mytable;
no rows selected
EVENT
------------------------------
INSERT attempted
136
Transactions
<?php
?>
The script inserts (but does not commit) using one connection and queries back the results with the original
and a second connection.
Using an oci_connect() connection lets you query the newly inserted (but uncommitted) data both
times because $c1 and $c2 refer to the same Oracle connection. Using oci_pconnect() is the same as
oci_connect(). The output is:
array(1) {
["COL1"]=>
array(1) {
[0]=>
string(9) "16-JUN-07"
}
}
array(1) {
["COL1"]=>
array(1) {
[0]=>
string(9) "16-JUN-07"
}
137
Executing SQL Statements With OCI8
Using oci_new_connect() for $c2 gives a new connection which cannot see the uncommitted data. The
output shows the second query does not fetch any rows:
array(1) {
["COL1"]=>
array(1) {
[0]=>
string(9) "16-JUN-07"
}
}
array(1) {
["COL1"]=>
array(0) {
}
}
Depending on the php.ini value of display_errors, you might consider using PHP’s @ prefix to
completely suppress automatic display of function errors, although this impacts performance:
$c = @oci_connect('hr', 'hrpwd', 'localhost/XE');
To trap output and recover from errors, PHP’s output buffering functions may be useful. If an error occurs
part way during creation of the HTML page being output, the partially complete page contents can be
discarded and an error page created instead.
138
PHP Error Handling
For information on getting extra information for errors during creation of PL/SQL procedures, see the
chapter Using PL/SQL with OCI8.
The output shows that $e is an array. The code entry 1017 matches the error number in the error message.
Since there was no SQL statement involved, the sqltext is empty and the offset is 0.
The internal reimplementation of OCI8 1.3 connection management makes it better at automatically
recovering from database unavailability errors. Even so, with persistent connections PHP can return a
cached connection without knowing if the database is still available. If the database has restarted since the
time of first connection, or the DBA had enabled resource management that limited the maximum
connection time for a user, or even if the DBA issued an ALTER SESSION KILL command to close the
user's database session, an OCI8 call might return an Oracle error when it tries to reuse a persistent
connection. However OCI8 will then mark the connection as invalid and the next time the Apache/PHP
process tries to connect, a new connection will be successfully created and usable.
For example, consider a script that uses a persistent connection:
<?php
139
Executing SQL Statements With OCI8
?>
After the script completes, if the DBA issues an ALTER SESSION KILL command for the database
connection created, the next time the script is run it will display the error:
ORA-00028: your session has been killed
However if the script is run a third time it will connect and run to completion normally.
An example of an execution error is when the table being queried does not exist:
$s = oci_parse($c, "select city from not_locations");
$rc = oci_execute($s);
if (!$rc) {
$e = oci_error($s);
var_dump($e);
}
140
PHP Error Handling
The output shows the message number and text. It also contains the text of the statement and the column
offset position of the error in that statement. Column 17 is the table name not_locations.
array(4) {
["code"]=>
int(942)
["message"]=>
string(39) "ORA-00942: table or view does not exist"
["offset"]=>
int(17)
["sqltext"]=>
string(30) "select city from not_locations"
}
141
Executing SQL Statements With OCI8
Binding is highly recommended. It can improve overall database throughput. Oracle is more likely to find
the matching statement in its cache and be able to reuse the execution plan and context for that statement,
even if someone else originally executed it.
Bind variables are also an important way to prevent SQL injection security attacks. SQL injection may occur
when SQL statements are hard coded text concatenated with user input:
$w = "userid = 1";
$s = oci_parse($c, "select * from mytable where $w");
If the user input is not carefully checked, then it may be possible for a malicious user to execute a SQL
statement of their choice instead of the one you intended.
In Oracle, a bind variable is a colon-prefixed name in the SQL text. A oci_bind_by_name() call tells
Oracle which PHP variable to actually use when executing the statement.
142
Tuning SQL Statements in PHP Applications
<?php
?>
There is no need to (and for efficiency you should not) re-parse the SQL statement if you just want to
change the value of the bind variable. The following code would work when appended to the end of
bindvar.php:
// No need to re-parse or re-bind
$myeid = 102;
oci_execute($s);
$row = oci_fetch_array($s, OCI_ASSOC);
echo "Last name is: ". $row['LAST_NAME'] ."<br>\n";
You can bind a single value with each oci_bind_by_name() call. Multiple values can be bound with
another function, oci_bind_array_by_name(), and passed to PL/SQL blocks. This is discussed in the
chapter on PL/SQL.
The syntax of oci_bind_by_name() is:
$rc = oci_bind_by_name($statement, $bindvarname, $phpvariable, $length, $type)
The length and type are optional. The default type is the string type, SQLT_CHR. Oracle will convert most
basic types to or from this as needed. For example when binding a number, you can omit the type
parameter.
It is recommended to pass the length if a query is being re-executed in a script with different bind
values. For example when binding, pass the length of the largest potential string. Passing the length also
avoids potential edge-case behavior differences if a script runs with multiple different Oracle character
sets.
Some older PHP examples use & with oci_bind_by_name() parameters. Do not do this. Since a call-
by-reference clean up in the implementation of PHP, this syntax has been deprecated and may cause
problems.
143
Executing SQL Statements With OCI8
A bind call tells Oracle which memory address to read data from. That address needs to contain valid
data when oci_execute() is called. If the bind call is made in a different scope from the execute call there
could be a problem. For example, if the bind is in a function and a function-local PHP variable is bound,
then Oracle may read an invalid memory location if the execute occurs after the function has returned. This
has an unpredictable outcome.
It is a common problem with binding in a foreach loop:
$ba = array(':dname' => 'IT Support', ':loc' => 1700);
foreach ($ba as $key => $val) {
oci_bind_by_name($s, $key, $val);
}
The problem here is that $val is local to the loop (and is reused). The SQL statement will not execute as
expected. Changing the bind call in the loop to use $ba[$key] solves the problem:
<?php
$s = oci_parse($c, 'select *
from departments
where department_name = :dname and location_id = :loc');
oci_execute($s);
?>
There is one case where you might decide not to use bind variables. When queries contain bind variables,
the optimizer does not have any information about the value you may eventually use when the statement
is executed. If your data is highly skewed, you might want to hard code values. But if the data is derived
from user input be sure to sanitize it.
Finally, Oracle does not use question mark '?' for bind variable placeholders at all and OCI8 supports
only named placeholders with a colon prefix. Some PHP database abstraction layers will simulate support
for question marks by scanning your statements and replacing them with supported syntax.
144
Tuning SQL Statements in PHP Applications
<?php
$s = oci_parse($c,
"select city, state_province from locations where city like :bv");
$city = 'South%';
oci_bind_by_name($s, ":bv", $city);
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
?>
This uses Oracle's traditional LIKE syntax, where '%' means match anything. An underscore in the pattern
string '_' would match exactly one character.
The output from bindlike.php is cities and states where the city starts with 'South':
array(2) {
["CITY"]=>
array(3) {
[0]=>
string(15) "South Brunswick"
[1]=>
string(19) "South San Francisco"
[2]=>
string(9) "Southlake"
}
["STATE_PROVINCE"]=>
array(3) {
[0]=>
string(10) "New Jersey"
[1]=>
string(10) "California"
[2]=>
string(5) "Texas"
}
}
Oracle also supports regular expression matching with functions like REGEXP_LIKE, REGEXP_INSTR,
REGEXP_SUBSTR, and REGEXP_REPLACE.
In a query from PHP you might bind to REGEXP_LIKE using:
145
Executing SQL Statements With OCI8
<?php
var_dump($res);
?>
This displays all the cities that contain the letters 'ing':
array(1) {
["CITY"]=>
array(2) {
[0]=>
string(7) "Beijing"
[1]=>
string(9) "Singapore"
}
}
This displays both surnames but it leads to the scaling and security issues that bind variables overcome.
Trying to emulate the query with a bind variable does not work:
$s = oci_parse($c,
"select last_name from employees where employee_id in (:eidbv)");
$myeids = "101,102";
oci_bind_by_name($s, ":EIDBV", $myeids);
oci_execute($s);
146
Tuning SQL Statements in PHP Applications
oci_fetch_all($s, $res);
All this gives is the error ORA-01722: invalid number because the $myeids string is treated as a single
value and is not recognized as a list of numbers.
The solution for a fixed, small number of values in the IN clause is to use individual bind variables.
NULLs can be bound for any unknown values:
<?php
$s = oci_parse($c,
"select last_name from employees where employee_id in (:e1, :e2, :e3)");
$mye1 = 103;
$mye2 = 104;
$mye3 = NULL; // pretend we were not given this value
oci_bind_by_name($s, ":E1", $mye1);
oci_bind_by_name($s, ":E2", $mye2);
oci_bind_by_name($s, ":E3", $mye3);
oci_execute($s);
oci_fetch_all($s, $res);
?>
Tom Kyte discusses the general problem and gives solutions for other cases in the March – April 2007
Oracle Magazine.
147
Executing SQL Statements With OCI8
There is also an optional fifth parameter, which is the datatype. This mostly used for binding LOBS and
result sets as shown in a later chapter. One micro-optimization when numbers are known to be integral, is
to specify the datatype as SQLT_INT. This avoids the type conversion cost:
oci_bind_by_name($s, ":MB", $mb, -1, SQLT_INT);
In this example, the length was set to –1 meaning use the native data size of an integer.
But if your tuning indicates that binding in a ORDER BY clause is necessary, and the columns are of the
same type, try using a SQL CASE statement:
$s = oci_parse($c, "select first_name, last_name
from employees
order by
case :ob
when 'FIRST_NAME' then first_name
else last_name
end");
oci_bind_by_name($s, ":ob", $vs);
oci_execute($s);
<?php
// Fetch a record
$s = oci_parse($c,
148
Tuning SQL Statements in PHP Applications
$rid = $row['ROWID'];
$addr = $row['STREET_ADDRESS'];
?>
to
MURTENSTRASSE 921
This parameter sets the number of rows returned in a batch when each fetch call to the database occurs.
The default value is 100. Prior to OCI8 1.3, the default was 10 and the OCI8 extension also capped the
memory used by the prefetch buffer at 1024 * oci8.default_prefetch bytes.
Increasing the prefetch value can significantly improve performance of queries that return a large
number of rows. It minimizes database server round-trips by returning as much data as possible each time a
request to the database is made. Testing will show the optimal size for your queries. There is no benefit
using too large a prefetch value. Conversely, because Oracle dynamically allocates space, there is little to be
gained by reducing the value too small.
The cache is managed by Oracle. The database returns the specified number of rows to a cache in its
client buffers. PHP functions like oci_fetch_array() return one row to the user per call regardless of the
prefetch size. Subsequent OCI8 fetches will consume the data in the cache until eventually another batch of
records is fetched from the database.
149
Executing SQL Statements With OCI8
Figure 91: The first request to the database fetches multiple rows to the cache. Subsequent fetches read from the cache.
You can also change the prefetch value at runtime with the oci_set_prefetch() function:
$s = oci_parse($c, "select city from locations");
oci_execute($s);
oci_set_prefetch($s, 200);
$row = oci_fetch_array($s, OCI_ASSOC);
For oci_fetch_all(), which returns all query rows to the user, PHP OCI8 internally fetches all the
records in batches of the specified prefetch size.
Prefetching is not used when queries contain LONG or LOB columns, or when fetching from a REF
CURSOR.
The recommendation is to use the number of statements in the application’s working set of SQL as the
value. Caching can be disabled by setting the size to 0.
The client-side statement cache is in addition to the standard database statement cache. The client cache
means even the text of the statement does not need to be transmitted to the database more than once,
reducing network traffic and database server load. The database can directly look up the statement context
in its cache without even having to hash the statement. In turn, the database does not need to transfer
meta-information about the statement back to PHP.
150
Tuning SQL Statements in PHP Applications
Figure 92: The second time a statement is issued, the statement text is not sent to the database.
The cache is per-Oracle session so this feature is more useful when persistent connections are used. Like
many tuning options, there is a time/memory trade-off when tweaking this parameter. The statement cache
also means slightly more load is put on the PHP host.
To tune the statement cache size, monitor general web server load and the database statistic "bytes sent
via SQL*Net to client". This can be seen, for example, in Automatic Workload Repository (AWR) reports.
When caching is effective, the statistic should show an improvement. Adjust the value of
oci8.statement_cache_size to your satisfaction.
OCI8 clears the cache if a statement returns a database error.
No PHP changes are required – applications will immediately benefit from the server cache.
The client cache is ideal for small queries from infrequently modified tables, such as lookup tables. It
can reduce PHP statement processing time and significantly reduce database CPU usage, allowing the
database to handle more PHP processes and users. The client-side cache is per PHP process.
A key feature of the caches is that Oracle automatically handles cache entry invalidation when a
database change invalidates the stored results. Oracle will check the client cache entries each time any
round trip to the database occurs. If no round trip has happened with a configurable “lag” time, the client
cache is assumed stale.
The Oracle® Call Interface Programmer's Guide, 11g Release 1 (11.1) contains the best description of the
feature and has more about when to use it and how to manage it.
151
Executing SQL Statements With OCI8
<?php
?>
This shows the database being accessed when the query is executed. Initially it shows just the monitoring
query itself.
In another terminal window, run crc.php from the command line or run it in a browser – it doesn't
display any results.
$ php crc.php
Re-running the monitoring query shows that during the 1000 loop iterations, the database executed the
PHP query just twice, once for the initial execution and the second time by a subsequent cache validation
check:
PARSE_CALLS EXECUTIONS SQL_TEXT
----------- ---------- ---------------------------------------------------
2 2 select /*+ result_cache */ * from employees where
rownum < 2
2 2 select parse_calls, executions, sql_text from v$sql
where sql_text like '%employees%'
152
Tuning SQL Statements in PHP Applications
This means that 998 of the times the statement was performed, the client cache was used for the results,
with no database access required.
Now edit crc.php and remove OCI_DEFAULT from the execute call:
oci_execute($s);
The monitoring query now shows the modified query was executed another 1000 times, or once per loop
iteration. This means the client query result cache was not used and each iteration had to be processed in
the database:
PARSE_CALLS EXECUTIONS SQL_TEXT
----------- ---------- ---------------------------------------------------
4 1002 select /*+ result_cache */ * from employees where
rownum < 2
3 3 select parse_calls, executions, sql_text from v$sql
where sql_text like '%employees%'
It is more efficient to let Oracle do the row selection and only return the exact number of rows required.
The canonical paging query for Oracle8i onwards is given on http://asktom.oracle.com:
select *
from ( select a.*, rownum as rnum
from (YOUR_QUERY_GOES_HERE -- including the order by) a
where rownum <= MAX_ROWS )
where rnum >= MIN_ROWS
Here, MIN_ROWS is the row number of first row and MAX_ROWS is the row number of the last row to return.
In PHP you might do this:
153
Executing SQL Statements With OCI8
<?php
$pagesql = "select *
from ( select a.*, rownum as rnum
from ( $mystmt ) a
where rownum <= :maxrow)
where rnum >= :minrow";
$s = oci_parse($c, $pagesql);
oci_bind_by_name($s, ":maxrow", $maxrow);
oci_bind_by_name($s, ":minrow", $minrow);
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
?>
Note that $mystmt is not bound. Bind data is not treated as code, so you cannot bind the text of the
statement and expect it to be executed. Beware of SQL injection security issues if SQL statements are
constructed or concatenated.
The output of the script is:
array(2) {
["CITY"]=>
array(5) {
[0]=>
string(6) "Geneva"
[1]=>
string(9) "Hiroshima"
[2]=>
string(6) "London"
[3]=>
string(11) "Mexico City"
[4]=>
string(6) "Munich"
}
["RNUM"]=>
array(5) {
[0]=>
string(1) "4"
[1]=>
string(1) "5"
[2]=>
string(1) "6"
154
Limiting Rows and Creating Paged Datasets
[3]=>
string(1) "7"
[4]=>
string(1) "8"
}
}
An alternative and preferred query syntax uses Oracle’s analytic ROW_NUMBER() function. The query:
select last_name, row_number() over (order by last_name) as myr
from employees
returns two columns identifying the last name with its row number:
LAST_NAME MYR
------------------------- ----------
Abel 1
Ande 2
Atkinson 3
. . .
By turning this into a subquery and using a WHERE condition any range of names can be queried. For
example to get the 11th to 20th names the query is:
select last_name FROM
(select last_name,
row_number() over (order by last_name) as myr
from employees)
where myr between 11 and 20
Auto-Increment Columns
Auto-increment columns in Oracle can be created using a sequence generator and a trigger.
Sequence generators are defined in the database and return Oracle numbers. Sequence numbers are
generated independently of tables. Therefore, the same sequence generator can be used for more than one
table or anywhere that you want to use a unique number. Sequence generation is useful to generate unique
primary keys for your data and to coordinate keys across multiple tables. You can get a new value from a
155
Executing SQL Statements With OCI8
sequence generator using the NEXTVAL operator in a SQL statement. This gives the next available number
and increments the generator. The similar CURRVAL operator returns the current value of a sequence
without incrementing the generator.
A trigger is a PL/SQL procedure that is automatically invoked at a predetermined point. In this
example a trigger is invoked whenever an insert is made to a table.
In SQL*Plus an auto increment column myid can be created like:
<?php
?>
Querying the table in SQL*Plus shows the MYID values were automatically inserted and incremented:
SQL> select * from mytable;
MYID MYDATA
---------- --------------------
1 Hello
2 Bye
The identifier numbers will be unique and increasing but may not be consecutive. For example if someone
rolls back an insert, a sequence number can be “lost”.
156
Getting the Last Insert ID
<?php
$s = oci_parse($c,
"insert into mytable (mydata) values ('Hello') return myid into :id");
oci_bind_by_name($s, ":id", $id, 20, SQLT_INT);
oci_execute($s);
echo "Data inserted with id: $id\n";
?>
This returns the value of the myid column for the new row into the PHP variable $id. The output,
assuming the two inserts of autoinc.php were previously executed, is:
Data inserted with id: 3
You could similarly return the ROWID of the new row into a descriptor:
$rid = oci_new_descriptor($c, OCI_D_ROWID);
$s = oci_parse($c,
"insert into mytable (mydata) values ('Hello') return rowid into :rid");
oci_bind_by_name($s, ":rid", $rid, -1, OCI_B_ROWID);
oci_execute($s);
Exploring Oracle
Explore the SQL and PL/SQL languages. Make maximum reuse of functionality that already exists. Tom
Kyte’s popular site, http://asktom.oracle.com, has a lot of useful information.
Oracle’s general guideline is to let the database manage data and to transfer the minimum amount
across the network. Avoid shipping data from the database to PHP for unnecessary post processing. Data is
a core asset of your business. It should be treated consistently across your applications. Keeping a thin
interface between your application layer and the database is also good programming practice.
There are many more useful SQL and Database features than those described in this book. They are left
for you to explore. A couple are mentioned below.
157
Executing SQL Statements With OCI8
Other analytic functions allow you to get basic information like standard deviations or do tasks such as
ranking (for Top-N or Bottom-N queries) or do linear regressions.
158
CHAPTER 11
PL/SQL Overview
There are a number of pre-supplied PL/SQL packages to make application development easier. Packages
exist for full text indexing, queuing, change notification, sending emails, job scheduling and TCP access,
just to name a few. When deciding whether to write PHP on the client or PL/SQL in the server, consider
your skill level in the languages, the cost of data transfer across the network and the re-usability of the
code. If you write in PL/SQL, all your Oracle applications in any tool or client language can reuse the
functionality. Some functionality should only ever be in the database, such as data change triggers. In
Oracle, you can create these to be fired when an event such as an insert or a user logon occurs.
A PL/SQL block has three basic parts:
● A declarative part (DECLARE)
● An executable part (BEGIN ... END)
● An exception-handling (EXCEPTION) part that handles error conditions
For example:
declare
sal_l pls_integer;
begin
select salary into sal_l from employees where employee_id = 191;
dbms_output.put_line('Salary is ' || sal_l);
exception
when no_data_found then
dbms_output.put_line('No results returned');
end;
You can run this in many tools, including PHP. In Oracle’s SQL*Plus it is run by entering the text at the
prompt and finishing with a single / to tell SQL*Plus to execute the code. If you turn on SET
SERVEROUTPUT beforehand, then SQL*Plus will display the output messages after execution:
SQL> set serveroutput on
SQL> declare
159
Using PL/SQL With OCI8
2 sal_l pls_integer;
3 begin
4 select salary into sal_l
5 from employees
6 where employee_id = 191;
7 dbms_output.put_line('Salary is ' || sal_l);
8 exception
9 when no_data_found then
10 dbms_output.put_line('No results returned');
11 end;
12 /
Salary is 2500
Other tools have different ways of indicating the end of the statements and how to switch server output on.
Only the executable part of a PL/SQL block is required. The declarative and exception hander parts are
optional.
If an application performs several SQL statements at one time, it can be efficient to bundle them
together in a single PL/SQL procedure. Instead of executing multiple SQL statements, PHP only needs to
execute one PL/SQL call. This reduces the number of round trips between PHP and the database, and can
improve overall performance.
Anonymous Blocks
An anonymous block is a PL/SQL block included in your application that is not named or stored in the
database. The previous example is an anonymous block. Because these blocks are not stored in the
database, they are generally for one-time use in a SQL script, or for simple code dynamically submitted to
the Oracle server.
160
Blocks, Procedures, Packages and Triggers
The procedure is only created, not run. Programs like PHP can run it later.
PL/SQL functions are created in a similar way using the CREATE OR REPLACE FUNCTION command.
If you have creation errors, use the SQL*Plus SHOW ERRORS command to display any messages. For
example, creating a procedure that references an invalid table causes an error:
SQL> create or replace procedure
2 myproc(d_p in varchar2, i_p in number) as
3 begin
4 insert into yourtab (mydata, myid) values (d_p, i_p);
5 end;
6 /
LINE/COL ERROR
-------- -----------------------------------------------------------------
4/3 PL/SQL: SQL Statement ignored
4/15 PL/SQL: ORA-00942: table or view does not exist
If you are running a SQL script file in SQL*Plus, it is helpful to turn SET ECHO ON to see the line numbers.
See below for handling PL/SQL errors in PHP.
Packages
Typically, stored procedures and functions are encapsulated into packages. This helps minimizes
recompilation of dependent objects. The package specification defines the signatures of the functions and
procedures. If that definition is unchanged, code that invokes it will not need to be recompiled even if the
implementation in the package body changes.
SQL> create or replace package mypack as
2 function myfunc(i_p in number) return varchar2;
3 end mypack;
4 /
161
Using PL/SQL With OCI8
8 end mypack;
9 /
Triggers
A database trigger is a stored procedure associated with a database table, view, or event. The trigger can be
called after the event, to record it, or take some follow-up action. A trigger can also be called before an
event, to prevent erroneous operations or fix new data so that it conforms to business rules. Triggers were
shown earlier as a way to optimize setting date formats (see Do Not Set the Date Format Unnecessarily in the
chapter on Connecting) and as a way of creating auto-increment columns (see Auto-Increment Columns in
the previous chapter).
<?php
?>
Note the last character of the PL/SQL statement is a semi-colon (after PL/SQL keyword end), which is
different to the way SQL statements are terminated.
PHP string concatenation was used to build the statement. If you don't do this and are on Windows,
see the end-of-line terminator issue mentioned below.
Similar to the performance advice on creating tables, avoid creating packages and procedures at
runtime in an application. Pre-create them as part of application installation.
162
Creating PL/SQL Stored Procedures in PHP
If showcompilationerrors() function, shown later, is used, its additional messages will show:
PLS-00103: Encountered the symbol "" when expecting one of the following:
This error, with its seemingly empty token representing the unexpected end-of-line syntax, is followed by a
list of keywords or tokens the PL/SQL parser was expecting.
Use one of these solutions to fix the problem:
● Write the PL/SQL code on a single line:
● Use PHP string concatenation with appropriate white space padding between tokens:
● Convert the file to use UNIX-style line-feeds with a conversion utility or editor.
<?php
?>
The block contains a single procedure call, but you could include any number of other PL/SQL statements.
You can also use the SQL CALL statement like:
<?php
163
Using PL/SQL With OCI8
?>
The call command is actually a SQL command and does not have a trailing semi-colon.
<?php
?>
The := token is the assignment operator in PL/SQL. Here it assigns the return value of the function to the
bind variable. The bind call specifies that 20 bytes should be allocated to hold the result. The script output
is:
Name is: Chris
This example also shows how to call a function or procedure inside a package using the syntax
packagename.functionname().
164
Calling PL/SQL Code
For OUT and IN OUT parameters, make sure the length is specified in the bind call. As mentioned in the
previous chapter, specifying the length for IN binds is often a good idea too, if the one statement is
executed multiple times in a loop.
<?php
165
Using PL/SQL With OCI8
?>
<?php
$numelems = 4;
$s = oci_parse($c, "begin mypkg.myselproc(:p1, :n); end;");
oci_bind_array_by_name($s, ":p1", $r, $numelems, 20, SQLT_CHR);
oci_bind_by_name($s, ":n", $numelems);
oci_execute($s);
?>
A number of other Oracle types can be bound with oci_array_bind_by_name(), for example SQLT_FLT
for floating point numbers.
There are more examples of oci_bind_array_by_name() in the automated OCI8 tests bundled with
the PHP source code, see ext/oci8/tests.
166
PL/SQL Success With Information Warnings
This error is most likely to be seen during development of PL/SQL which is commonly done in SQL*Plus or
SQL Developer. It can also be seen during application installation if PL/SQL packages, procedures or
functions have an unresolved dependency.
PHP code to check for informational errors and warnings is shown in plsqlerr.php. It creates a procedure
referencing a non-existent table and then queries the USER_ERRORS table when the ORA-24344 error
occurs:
<?php
$s = oci_parse($c, $plsql);
$r = @oci_execute($s);
if (!$r) {
$m = oci_error($s);
if ($m['code'] == 24344) {
// A PL/SQL "success with compilation error"
echo "Warning is ", $m['message'], "\n";
showcompilationerrors($c);
} else {
// A normal SQL-style error
echo "Error is ", $m['message'], "\n";
}
}
167
Using PL/SQL With OCI8
print "<pre>\n";
while ($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) {
foreach ($row as $item) {
print ($item?htmlentities($item):"");
}
print "\n";
}
print "</pre>";
}
?>
This displays:
Warning is ORA-24344: success with compilation error
MYPROC: ERROR at character 13 of line 4 - PL/SQL: SQL Statement ignored
MYPROC: ERROR at character 25 of line 4 - PL/SQL: ORA-00942: table or view does
not exist
Looking at the PL/SQL code creating the procedure, character 13 on line 4 of the PL/SQL code is the
INSERT statement. Character 25 is the table name not_mytab.
Your output may also include errors from creating earlier blocks. You can insert a WHERE clause before
the ORDER BY to restrict the error messages:
where name = 'MYPROC'
In PHP the oci_new_cursor() function returns a REF CURSOR resource. This is bound to :rc in the call
to myproc(). The bind size of -1 means “ignore the size passed”. It is used because the size of the REF
CURSOR is fixed by Oracle. Once the PL/SQL procedure has completed then the value in $refcur is
treated like a prepared statement identifier. It is simply executed like a normal query and used in a fetch
loop.
168
Using REF CURSORS for Result Sets
<?php
?>
This next example uses a user-defined type for the REF CURSOR, making the cursor “strongly typed”. The
type is declared in a package specification.
procedure get_contact_info(
p_emp_id in number,
p_contact_info out contact_info_cur_type);
169
Using PL/SQL With OCI8
end emp_pack;
/
show errors
procedure get_contact_info(
p_emp_id in number,
p_contact_info out contact_info_cur_type) as
begin
open p_contact_info for
select first_name, last_name, phone_number, email
from employees
where employee_id = p_emp_id;
end;
end emp_pack;
/
show errors
The PHP code is very similar to refcur1.php, except in the call to the procedure. The procedure name has
changed and, for this example, an employee identifier of 188 is used.
$s = oci_parse($c, "call emp_pack.get_contact_info(188, :rc)");
$refcur = oci_new_cursor($c);
oci_bind_by_name($s, ':rc', $refcur, -1, OCI_B_CURSOR);
oci_execute($s);
The output is the record for employee 188. The four values match the contact_info_type:
Kelly Chung 650.505.1876 KCHUNG
Closing Cursors
To avoid running out of Oracle cursors (which have a database-configured, per-session limit
open_cursors set by the DBA), make sure to explicitly free cursors. The example in refcur3.php is a script
that implicitly creates cursors.
<?php
170
Using REF CURSORS for Result Sets
initialize($c);
?>
The query is contrived. The outer select from MYTAB returns not rows, but a CURSOR per row of MYTAB.
Those cursors each represent the result from the inner query. That is, there are 400 queries from the DUAL
table. The outer while loop fetches each of the 400 REF CURSORs in turn. The inner while loop fetches
from each REF CURSOR. The result is a stream of X's (which is the single row of data in DUAL) being
displayed:
X
X
X
. . .
then the script can reach the database limit on the number of cursors. After some iterations through the
loop, an error is displayed:
PHP Warning:oci_fetch_array(): ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
The number of iterations before getting the messages depends on the database configuration parameter
open_cursors.
171
Using PL/SQL With OCI8
In Oracle Database XE you can monitor the number of cursors that each PHP connection has open by
logging into Oracle Application Express as the system user and navigating to Administration > Monitor >
Sessions > Open Cursors.
This calls myproc() and pipes each record. It can be called in PHP using a simple query with the table
operator:
<?php
172
Using REF CURSORS for Result Sets
?>
If the REF CURSOR query in myproc() selected all columns, then outtype_set could simply be have
been declared as:
type outtype_set is table of employees%rowtype;
173
Using PL/SQL With OCI8
is
begin
delete from emails where user_id = p_user_id;
forall i in indices of p_email_addresses
insert into emails (user_id, friend_name, email_address)
values (p_user_id, p_friend_name(i), p_email_addresses(i));
end update_address_book;
/
show errors
The update_address_book() procedure loops over all elements of the address collection and inserts each
one and its matching name.
The updateaddresses.php code creates a collection of names and a collection of email addresses using the
append() method to add elements to each array. These collections are bound as OCI_B_NTY (“named
type”) to the arguments of the PL/SQL address_book() call. The size -1 is used because Oracle internally
knows the size of the type. When address_book() is executed, the names and email addresses are
inserted into the database.
<?php
$user_name = 'cjones';
$friends_names = array('alison', 'aslam');
$friends_emails = array('[email protected]', '[email protected]');
oci_execute($s);
?>
174
Oracle Collections in PHP
Other OCI8 collection methods allow accessing or copying data in a collection. See the PHP manual for
more information.
175
Using PL/SQL With OCI8
This is the “fixed” part of the problem, representing the pre-supplied functionality you need to work with.
end MyProc;
/
show errors
<?php
176
Using PL/SQL and SQL Object Types in PHP
?>
This allocates two collections and binds them as the parameters to MyProc(). After MyProc() has been
called, the collection method getElem() is used to access each value returned. The output is similar to:
Id: 1, Data: Random: 155942
Id: 2, Data: Random: 247783
Id: 3, Data: Random: 365553
Id: 4, Data: Random: 487553
Id: 5, Data: Random: 589879
177
Using PL/SQL With OCI8
Data of type mytabletype can be converted to a REF CURSOR using a wrapper function:
<?php
?>
178
Using PL/SQL and SQL Object Types in PHP
Oracle's lack of pre-fetching for REF CURSORS needs to be considered if performance is important. Using
a PIPELINED function or array bind can be much faster.
Binding an Array
An alternative solution lets you use the fast oci_bind_array_by_name() function. The wrapper
procedure looks like:
<?php
var_dump($myid);
var_dump($mydata);
?>
This technique can be used when the number of items to return is known. The output is:
array(5) {
[0]=>
int(2)
[1]=>
179
Using PL/SQL With OCI8
int(4)
[2]=>
int(6)
[3]=>
int(8)
[4]=>
int(10)
}
array(5) {
[0]=>
string(11) "some name 1"
[1]=>
string(11) "some name 2"
[2]=>
string(11) "some name 3"
[3]=>
string(11) "some name 4"
[4]=>
string(11) "some name 5"
}
<?php
180
Using PL/SQL and SQL Object Types in PHP
?>
The variable :ln is arbitrarily bound as length 255. This was the DBMS_OUTPUT line size limit prior to
Oracle Database 10g Release 10.2, when it was then changed to 32Kb. (The limitation on the number of
lines was also raised). Avoid binding 32Kb, especially if the database is running in Oracle’s shared server
mode. If you bind this size, then it is easy to slow performance or get memory errors. However, if you bind
less than the full size, make sure your application does not print wider lines.
Alternatively, you can use oci_bind_array_by_name() and call another DBMS_OUTPUT package that
returns multiple lines, get_lines(). The performance of this is generally better but it does depend on
how big the bind array is, how much data is returned and how the code is structured. In the worst case it
might be slower than the simple code, so benchmark your application carefully.
A more consistent and fast DBMS_OUTPUT fetching implementation uses a custom pipelined PL/SQL
function. In SQL*Plus create the function:
181
Using PL/SQL With OCI8
loop
dbms_output.get_line(line, status);
exit when status = 1;
pipe row (line);
end loop;
return;
end;
/
show errors
Because we will fetch the data in a query as a SQL string, the maximum length is 4000 bytes.
A function to turn on output buffering is shown in dbmsoutput.inc along with getdbmsoutput() which
returns an array of the output lines:
<?php
// Turn DBMS_OUTPUT on
function enabledbmsoutput($c)
{
$s = oci_parse($c, "begin dbms_output.enable(null); end;");
$r = oci_execute($s);
return $r;
}
// Returns an array of DBMS_OUTPUT lines
function getdbmsoutput($c)
{
$res = false;
$s = oci_parse($c, "select * from table(mydofetch())");
oci_execute($s);
oci_fetch_all($s, $res);
return $res['COLUMN_VALUE'];
}
?>
The next script uses these functions to show “printing” output from PL/SQL blocks:
<?php
include("dbmsoutput.inc");
182
Getting Output with DBMS_OUTPUT
?>
If you expect large amounts of output, you may want to stream results as they are fetched from the
database instead of returning them in one array from getdbmsoutput().
If DBMS_OUTPUT does not suit your application, you can also get output from PL/SQL by logging it to
database tables or by using packages like UTL_FILE and DBMS_PIPE to asynchronously display output to a
separate terminal window.
183
Using PL/SQL With OCI8
end;
/
show errors
The relies_on() clause is a comma separated list of tables. If any of these tables change, than the cache is
automatically invalidated by Oracle. The next time the function is called, it will execute completely and
update the cache appropriately.
See the Oracle Database PL/SQL Language Reference 11g Release 1 (11.1) manual for more details about the
feature.
<?php
184
Using Oracle Locator for Spatial Mapping
$s = oci_parse($c, $sql);
$sid = 101;
$nres = 'sdo_num_res=3'; // return 3 results
?>
185
Using PL/SQL With OCI8
The CUSTOMER_ID, FIRST_NAME and LAST_NAME columns are scalar NUMBER and VARCHAR2 columns
returned directly into a PHP array.
<?php
$s = oci_parse($c, $sql);
$cid = 1001;
oci_bind_by_name($s, ":cid", $cid);
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
?>
186
Using Oracle Locator for Spatial Mapping
Before continuing, execute the three statements given in the manual to create the table, insert the meta-data
into user_sdo_geom_metadata table, and create the index.
Next, insert a sample row. The row describes a polygon of (x,y) ordinates which are given as pairs in
the SDO_ORDINATE_ARRAY array:
commit;
A decomposition function helps query the coordinates in PHP. Note the alias cm (an alias here is also
known as a correlation name) for the table in the query. This allows the sdo_ordinates collection to be
included as a select column:
<?php
187
Using PL/SQL With OCI8
$v = $ords->getElem($i);
echo "Value: $v\n";
}
?>
The output is the list of coordinates that were inserted in the SDO_ORDINATE_ARRAY:
Value: 5
Value: 1
Value: 8
Value: 1
Value: 8
Value: 6
Value: 5
Value: 7
Value: 5
Value: 1
Similar techniques to these example given, or those techniques in the earlier section Using PL/SQL and SQL
Object Types in PHP can be used to fetch other Locator data, if required.
connect system/systempwd
connect hr/hrpwd
188
Scheduling Background or Long Running Operations
This script creates a sample table and the procedure to update tags. The procedure is artificially slowed
down to simulate a big, long running database operation.
The following PHP script uses an anonymous block to create a job calling changetagname().
<?php
function doquery($c)
{
$s = oci_parse($c, "select tag from tag_table");
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
}
$stmt =
"begin
dbms_scheduler.create_job(
job_name => :jobname,
job_type => 'STORED_PROCEDURE',
job_action => 'changetagname', // procedure to call
number_of_arguments => 2);
dbms_scheduler.set_job_argument_value (
job_name => :jobname,
argument_position => 1,
argument_value => :oldval);
dbms_scheduler.set_job_argument_value (
job_name => :jobname,
argument_position => 2,
argument_value => :newval);
dbms_scheduler.enable(:jobname);
189
Using PL/SQL With OCI8
end;";
$s = oci_parse($c, $stmt);
$jobname = uniqid('ut');
$oldval = 'weeding';
$newval = 'wedding';
oci_bind_by_name($s, ":jobname", $jobname);
oci_bind_by_name($s, ":oldval", $oldval);
oci_bind_by_name($s, ":newval", $newval);
oci_execute($s);
?>
The PHP call to the anonymous PL/SQL block returns quickly. The background PL/SQL call to
changetagname() will take several more seconds to complete (because of its for loop), so the first
doquery() output shows the original, incorrect tag values. Then, after PHP has given the job time to
conclude, the second doquery() call shows the updated values:
Your request is being processed and will soon complete
array(1) {
["TAG"]=>
array(3) {
[0]=>
string(7) "weeding"
[1]=>
string(7) "weeding"
[2]=>
string(12) "sanfrancisco"
}
}
Your request has probably completed
array(1) {
["TAG"]=>
array(3) {
[0]=>
string(7) "wedding"
[1]=>
string(7) "wedding"
[2]=>
string(12) "sanfrancisco"
}
}
190
Reusing Procedures Written for MOD_PLSQL
To reuse the procedure directly in PHP, use SQL*Plus to create a mapping function that pipes the output
from the HTP calls:
191
Using PL/SQL With OCI8
line := htp.get_line(irows);
exit when line is null;
pipe row (line);
end loop;
return;
end;
/
show errors
<?php
oci_execute($stmt);
$content = false;
while ($row = oci_fetch_array($stmt, OCI_ASSOC)) {
if ($content) {
print $row["COLUMN_VALUE"];
} else {
if ($row["COLUMN_VALUE"] == "\n")
$content = true;
else
header($row["COLUMN_VALUE"]);
}
}
?>
When called in a browser, the output is the expected rendition of the HTML fragment shown earlier.
192
CHAPTER 12
Note querying BLOB columns in SQL*Plus is not possible unless SQL*Plus 11g is used, where it will
display a hexadecimal version of the data. Tables with CLOB columns can be queried in all versions of
SQL*Plus. The output of BLOB and CLOB data can be controlled in SQL*Plus with the SET LONG
command. The default value of 80 means that only the first 80 characters of data will be displayed by a
query.
<?php
$myblobid = 123;
$myv = 'a very large amount of binary data';
193
Using Large Objects in OCI8
$lob->save($myv);
oci_commit($c);
$lob->close(); // close LOB descriptor to free resources
?>
The RETURNING clause returns the Oracle LOB locator of the new row. By binding as OCI_B_BLOB, the PHP
descriptor in $lob references this locator. The $lob->save() method then stores the data in $myv into the
BLOB column. The OCI_DEFAULT flag is used for oci_execute() so the descriptor remains valid for the
save() method. The commit concludes the insert and makes the data visible to other database users.
If the application uploads LOB data using a web form, it can be inserted directly from the upload
directory with $lob->import($filename). PHP’s maximum allowed size for uploaded files is set in
php.ini using the upload_max_filesize parameter.
To update a LOB, use the same code with this SQL statement:
$s = oci_parse($c, 'update mybtab set
blobdata = empty_blob()
returning blobdata into :blobdata');
Fetching LOBs
When fetching a LOB, OCI8 returns the LOB descriptor and the data can be retrieved by using a load() or
read() method:
<?php
$myblobid = 123;
?>
194
Working with LOBs
If LOBS are not freed, the ABSTRACT_LOBS column in the V$TEMPORARY_LOBS table will show increasing
values.
Instead of using locators, LOB data can alternatively be returned as a string:
$arr = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_LOBS);
echo $arr['BLOBDATA'];
If the returned data is larger than expected, PHP may not be able to allocate enough memory. To protect
against this, use a locator with the read() method, which allows the data size to be limited.
Temporary LOBs
Temporary LOBs make some operations easier. Inserting data with a Temporary LOB does not use a
RETURNING INTO clause:
<?php
$myblobid = 124;
$myv = 'a very large amount of binary data';
?>
If you want to either insert a new row or update existing data if the row turns out to exist already, the SQL
statement can be changed to use an anonymous block :
$s = oci_parse($c,
'begin'
. ' insert into mybtab (blobdata, blobid) values(:blobdata, :myblobid);'
. ' exception'
. ' when dup_val_on_index then'
195
Using Large Objects in OCI8
<?php
$myblobid = 125;
$myv = 'a very large amount of binary data';
?>
PHP code to fetch and display the BLOB would look like:
196
Working with LOBs
<?php
$myblobid = 125;
?>
The full list of LOB methods and functions is shown in Table 10. Check the PHP manual for usage.
197
Using Large Objects in OCI8
198
Working with BFILEs
In this example, the image data is not loaded and printed in PHP. Instead, the browser is redirected to
the image URL of the external file. This significantly reduces the amount of data that needs to be handled
by the application.
To allow Apache to serve the image, edit httpd.conf and map a URL to the directory containing the file.
For example if the file is /tmp/cj.jpg add:
Alias /tmp/ "/tmp/"
<Directory "/tmp/">
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Using /tmp like this is not recommended for anything except testing!
Restart Apache and use a browser to check that http://localhost/tmp/cj.jpg loads the picture
in /tmp/cj.jpg.
In Oracle, create a DIRECTORY alias for /tmp. This is Oracle’s pointer to the operating system and
forms part of each BFILE. The directory must be on the same machine that the database server runs on.
Start SQL*Plus as:
$ sqlplus system/systempwd@localhost/XE
This gives the hr user access to the /tmp directory and creates a table FileTest containing a file number
identifier, a text description of the file, and the BFILE itself. The image data is not loaded into this table; the
BFILE in the table is a pointer to the file on your file system.
PHP code to insert the image name into the FileTest table looks like:
<?php
$fnum = 1;
$fdsc = "Some description to search";
$name = "cj.jpg";
199
Using Large Objects in OCI8
?>
The bfilename() constructor inserts into the BFILE-type column using the TESTDIR directory alias
created earlier. Bind variables are used for efficiency and security.
This new BFILE can be queried back in PHP:
<?php
$fnum = 1;
?>
Now what? In this example the file name is needed so the browser can redirect to a page showing the
image. Unfortunately there is no direct method in PHP to get the filename from the descriptor. However,
an Oracle procedure can be created to do this.
Instead of executing the query in PHP and using PL/SQL to find the filename, a more efficient method
is to do both in PL/SQL. Here an anonymous block is used. Alternatively, a procedure could be used.
The previous query code in bfilequery1.php can be replaced with:
<?php
200
Working with BFILEs
$s = oci_parse($c,
'declare '
. 'b_l bfile;'
. 'da_l varchar2(255);'
. 'begin '
. 'select image into b_l from filetest where filenum = :fnum;'
. 'dbms_lob.filegetname(b_l, da_l, :name);'
. 'end;');
$fnum = 1;
oci_bind_by_name($s, ":fnum", $fnum);
oci_bind_by_name($s, ":name", $name, 255, SQLT_CHR);
oci_execute($s);
header("Location: http://localhost/tmp/$name");
?>
The filename cj.jpg is returned in $name courtesy of the :name bind variable argument to the
DBMS_LOB.FILEGETNAME() function. The header() function redirects the user to the image. If any text is
printed before the header() is output, the HTTP headers will not be correct and the image will not
display. If you have problems, comment out the header() call and echo $name to check it is valid.
BFILEs are easy to work with in PL/SQL because the pre-supplied DBMS_LOB package has a number of
useful functions. For example DBMS_LOB.LOADFROMFILE() reads BFILE data from the file system into a
PL/SQL BLOB or CLOB. This could be loaded into a BLOB table column, manipulated in PL/SQL, or even
returned to PHP using OCI8’s LOB features. Another example is DBMS_LOB.FILEEXISTS(), which can be
used to check whether the FileTest table contains references to images that do not exist.
BFILEs are very useful for many purposes including loading images into the database, but BLOBs may
be better in some circumstances. Changes to BFILE locators can be rolled back or committed but since the
files themselves are outside the database, BFILE data does not participate in transactions. You can have
dangling references to BFILEs because Oracle does not check the validity of BFILEs until the data is
explicitly read (this allows you to pre-create BFILEs or to change the physical data on disk). BFILE data
files are read-only and cannot be changed within Oracle. Finally, BFILEs need to be backed up manually.
Because of these points, there might be times you should use BLOBs to store images inside the database to
ensure data and application consistency but BFILEs are there if you want them.
201
Using Large Objects in OCI8
202
CHAPTER 13
<?php
$query =
'select xmlelement("Employees",
xmlelement("Name", employees.last_name),
xmlelement("Id", employees.employee_id)) as result
from employees
where employee_id > 200';
$s = oci_parse($c, $query);
oci_execute($s);
while ($row = oci_fetch_array($s, OCI_NUM)) {
foreach ($row as $item) {
echo htmlentities($item)."<br>\n";
}
}
?>
203
Using XML with Oracle and PHP
Tip: Watch out for the quoting of XML queries. The XML functions can have embedded double-quotes. This is the exact opposite of
standard SQL queries, which can have embedded single quotes.
There are a number of other XML functions that can be similarly used. See the Oracle Database SQL
Reference.
<?php
$s = oci_parse($c, $query);
oci_execute($s);
$row = oci_fetch_array($s, OCI_NUM);
$mylob = $row[0]->load(); // treat result as a LOB descriptor
$row[0]->free();
echo "<pre>\n";
echo htmlentities($mylob);
echo "</pre>\n";
?>
204
Fetching Rows as Fully Formed XML
<FIRST_NAME>Shelli</FIRST_NAME>
</ROW>
<ROW>
<FIRST_NAME>Sigal</FIRST_NAME>
</ROW>
<ROW>
<FIRST_NAME>Guy</FIRST_NAME>
</ROW>
<ROW>
<FIRST_NAME>Karen</FIRST_NAME>
</ROW>
</ROWSET>
Note the cast to binary which ensures consistent encoding. The output is:
object(SimpleXMLElement)#2 (1) {
["ROW"]=>
array(6) {
[0]=>
object(SimpleXMLElement)#3 (1) {
["FIRST_NAME"]=>
string(3) "Den"
}
[1]=>
object(SimpleXMLElement)#4 (1) {
["FIRST_NAME"]=>
string(9) "Alexander"
}
[2]=>
object(SimpleXMLElement)#5 (1) {
["FIRST_NAME"]=>
string(6) "Shelli"
}
[3]=>
object(SimpleXMLElement)#6 (1) {
["FIRST_NAME"]=>
string(5) "Sigal"
}
[4]=>
object(SimpleXMLElement)#7 (1) {
["FIRST_NAME"]=>
string(3) "Guy"
}
[5]=>
object(SimpleXMLElement)#8 (1) {
205
Using XML with Oracle and PHP
["FIRST_NAME"]=>
string(5) "Karen"
}
}
}
There are more examples of using SimpleXML with XML data in PHP's test suite under the
ext/simplexml/tests directory of the PHP source code bundle.
As an alternative to SimpleXML you could use PHP’s older DOM extension. There is an article Using
PHP5 with Oracle XML DB by Yuli Vasiliev in the July/August 2005 Oracle Magazine that discusses this.
This is likely to successfully fetch and display some rows before failing. The failure happens because the
database does a conversion from XMLType to a string before returning results to PHP. When the string is
too long, an error is thrown:
PHP Warning: oci_fetch_array(): ORA-19011: Character string buffer too small
When the rows are short there is no error. During testing you could be tricked into thinking your query
will always return a complete set of rows.
Use the XMLTYPE.GETCLOBVAL() function to force XMLType conversion to return a CLOB, avoiding
the string size limit problem. Standard OCI8 CLOB methods can be used on the returned data:
206
Fetching XMLType Columns
<?php
?>
commit;
<?php
207
Using XML with Oracle and PHP
?>
The $sx->asXml() method converts the SimpleXML object to the text representation used to update the
table. A temporary LOB is created to pass the new XML value to the database.
After running the PHP script, querying the record shows the number of docks has been decremented
from 2 to 1:
SQL> set long 1000 pagesize 100
WAREHOUSE_SPEC
---------------------------------------------------
<?xml version="1.0"?>
<Warehouse>
<WarehouseId>1</WarehouseId>
<WarehouseName>Southlake, Texas</WarehouseName>
<Building>Owned</Building>
<Area>25000</Area>
<Docks>1</Docks>
<DockType>Rear load</DockType>
<WaterAccess>true</WaterAccess>
<RailAccess>N</RailAccess>
<Parking>Street</Parking>
<VClearance>10</VClearance>
</Warehouse>
See Using XML in SQL Statements in Oracle Database SQL Reference for more discussion of XMLType.
208
Fetching an XMLType from a PL/SQL Function
To access this function in PHP, first create a wrapper function that maps the XML data to a CLOB:
This can be called in PHP by binding a LOB descriptor to the return value of the function. OCI8 LOB
methods like load() can be used on the descriptor:
<?php
?>
209
Using XML with Oracle and PHP
The different quoting styles used by SQL and XQuery need careful attention in PHP. It can be coded:
<?php
$s = oci_parse($c, $query);
oci_execute($s);
while ($row = oci_fetch_array($s, OCI_NUM)) {
foreach ($row as $item) {
echo htmlentities($item)." ";
}
}
?>
The query could also be in a single PHP HEREDOC with XQuery variables escaped. Note there cannot be
whitespace on the last line before the token END:
$query = <<<END
select column_value from xmltable('for \$i in ora:view("employees") return \$i')
END;
In PHP 5.3, use the NOWDOC syntax so the XQuery variable $i does not need escaping. Note the single
quotes around the word END to differentiate it from a HEREDOC.
$query = <<<'END'
select column_value from xmltable('for $i in ora:view("employees") return $i')
END;
210
XQuery XML Query Language
<EMAIL>SKING</EMAIL>
<PHONE_NUMBER>515.123.4567</PHONE_NUMBER>
<HIRE_DATE>1987-06-17</HIRE_DATE>
<JOB_ID>AD_PRES</JOB_ID>
<SALARY>24000</SALARY>
<DEPARTMENT_ID>90</DEPARTMENT_ID>
</ROW>
…
<ROW>
<EMPLOYEE_ID>206</EMPLOYEE_ID>
<FIRST_NAME>William</FIRST_NAME>
<LAST_NAME>Gietz</LAST_NAME>
<EMAIL>WGIETZ</EMAIL>
<PHONE_NUMBER>515.123.8181</PHONE_NUMBER>
<HIRE_DATE>1994-06-07</HIRE_DATE>
<JOB_ID>AC_ACCOUNT</JOB_ID>
<SALARY>8300</SALARY>
<MANAGER_ID>205</MANAGER_ID>
<DEPARTMENT_ID>110</DEPARTMENT_ID>
</ROW>
You can also use RETURNING CONTENT to return a single document node:
$query = <<<END
select xmlquery('for \$i in ora:view("hr", "locations")/ROW
return \$i/CITY'
returning content) from dual
END;
For both XMLTABLE() and XMLQUERY() you might want to use the XMLTYPE.GETCLOBVAL() function to
avoid string size limit issues:
$query = <<<END
select xmltype.getclobval(column_value)
from xmltable('for \$i in ora:view("employees") return \$i')
END;
and
$query = <<<END
select xmltype.getclobval(xmlquery('for \$i in ora:view("hr",
"locations")/ROW return \$i/CITY'
returning content)) from dual
END;
The returned column type is a LOB locator and so the fetch uses LOB methods, such as load():
$s = oci_parse($c, $query);
oci_execute($s);
while ($row = oci_fetch_array($s, OCI_NUM)) {
var_dump($row[0]->load());
$row[0]->free();
}
211
Using XML with Oracle and PHP
The file can now be accessed from a browser (or PHP application) using:
http://localhost:8080/public/test1.txt
If you are accessing Oracle Database XE from a remote browser, you may need to enable remote client
connection as described in the chapter Installing Oracle Database 10g Express Edition.
There is extensive Oracle documentation on XML DB on the Oracle Technology network at
http://otn.oracle.com/tech/xml/xmldb.
212
CHAPTER 14
213
PHP Scalability and High Availability
Figure 93: Without DRCP, idle persistent connections from PHP still consume database resources.
214
Database Resident Connection Pooling
The pool size and number of connection brokers are configurable. There is always at least one connection
broker per database instance when DRCP is enabled. Also, at any time, around 5% of the current pooled
servers are reserved for authenticating new PHP connections. Authentication is performed when a PHP
process establishes a connection to the connection broker.
DRCP boosts the scalability of the database and the web server tier because connections to the database
are held at minimal cost. Database memory is only used by the pooled servers, and scaling can be explicitly
controlled by DRCP tuning options.
With the introduction of pooled servers used by DRCP, there are now three types of database server
process models that Oracle applications can use: dedicated servers, shared servers and pooled servers.
Table 11: Differences between dedicated servers, shared servers, and pooled servers.
Dedicated Servers Shared Servers Pooled Servers
When the PHP connection is When the PHP connection is When the PHP connection is created,
created, a network connection to created, a network connection a network connection to the
a dedicated server process and to the dispatcher process is connection broker is established.
associated session are created. established. A session is created
in the SGA.
215
PHP Scalability and High Availability
Pooled servers in use by PHP are similar in behavior to dedicated servers. After connection, PHP directly
communicates with the pooled server for all database operations.
216
Database Resident Connection Pooling
Table 12: Behavior of OCI8 connection functions for Dedicated and Pooled Servers.
oci_connect() Creates a PHP connection to the Gets a pooled server from the DRCP
database using a dedicated server. pool and creates a brand new
The connection is cached in the session. Subsequent oci_connect()
PHP process for reuse by calls in the same script use the same
subsequent oci_connect() calls connection. When the script
in the same script. At the end of the completes, or oci_close() is called,
script or with oci_close(), the the session is destroyed and the
connection is closed and the server pooled server is available for other
process and session are destroyed. PHP connections to use.
With DRCP, all three connection functions save on the cost of authentication and benefit from the network
connection to the connection broker being maintained, even for connections that are “closed” from PHP’s
point of view. They also benefit from having pre-spawned server processes in the DRCP pool.
The oci_pconnect() function reuses sessions, allowing even greater scalability. The non-persistent
connection functions create and destroy new sessions each time they are used, allowing less sharing at the
cost of reduced performance.
217
PHP Scalability and High Availability
Overall, after a brief warm-up period for the pool, DRCP allows reduced connection times in addition
to the reuse benefits of pooling.
Table 13: Example database host memory use for dedicated, shared and pooled servers.
218
Database Resident Connection Pooling
219
PHP Scalability and High Availability
Figure 95: The DRCP pool is logically partitioned by username and connection class.
If there are no free pooled servers matching a request for a userid in the specified connection class, and if
the pool is already at its maximum size, then an idle server in the pool will be used and a new session
created for it. If the server originally belonged to a different connection class, the server will migrate to the
new class. If there are no pooled servers available, the connection request waits for one to become available.
This allows the database to continue without becoming overloaded.
The connection class should be set to the same value for each instance of PHP running the same
application where sharing of pooled connections is desired. If no connection class is specified, each web
server process will have a unique, system generated class name, limiting sharing of connections to each
process.
If DRCP is used but session sharing is not desirable under any condition, use oci_connect() or
oci_new_connect() which recreate the session each time.
Although session data may be reused by subsequent persistent connections, transactions do not span
connections across scripts. Uncommitted data will be rolled back at the end of a PHP script.
220
Using DRCP in PHP
PHP applications deployed as Apache modules, FastCGI, CGI and standalone applications can benefit
from DRCP. PHP applications deployed as Apache modules or with FastCGI gain most, since they remain
connected to the connection broker over multiple script executions and can take advantage of other
optimizations, such as statement caching.
Once enabled this way, the pool automatically restarts when the instance restarts, unless explicitly stopped
with the dbms_connection_pool.stop_pool() command:
SQL> execute dbms_connection_pool.stop_pool();
221
PHP Scalability and High Availability
222
Using DRCP in PHP
Note: The parameters have been described here relative to their use in PHP but it is worth remembering that the DRCP pool is
usable concurrently by other programs.
In general, if pool parameters are changed, the pool should be restarted, otherwise server processes will
continue to use old settings.
The inactivity_timeout setting terminates idle pooled servers, helping optimize database
resources. To avoid pooled servers permanently being held onto by a dead web server process or a selfish
PHP script, the max_think_time parameter can be set. The parameters num_cbrok and maxconn_cbrok
can be used to distribute the persistent connections from the clients across multiple brokers. This may be
needed in cases where the operating system per-process descriptor limit is small.
The max_use_session and max_lifetime_session parameters help protect against any
unforeseen problems affecting server processes. The default values will be suitable for most users.
Users of Oracle Database 11.1.0.6 must apply the database patch for bug 6474441. This is necessary
with OCI8 1.3 to avoid query errors. It also enables LOGON trigger support. This patch is not needed with
11.1.0.7 onwards.
The parameter can be set in php.ini, .htaccess or httpd.conf files. It can also be set and retrieved
programmatically using the PHP functions ini_set() and ini_get().
The OCI8 extension has several legacy php.ini configuration parameters for tuning persistent
connections. These were mainly used to limit idle resource usage. With DRCP, the parameters still have an
effect but it may be easier to use the DRCP pool configuration options.
223
PHP Scalability and High Availability
With OCI8 1.3, oci8.ping_interval is also used for non-persistent connections when pooled servers are
used. This helps protect against the possibility of unusable connections being returned to PHP when there
has been a database instance or node failure.
Web servers and the network should benefit from oci8.statement_cache_size being set. For best
performance it should generally be larger than the size of the working set of SQL statements. To tune it,
monitor general web server load and the AWR bytes sent via SQL*Net to client values. The latter statistic
should benefit from not shipping statement meta-data to PHP. Adjust the statement cache size to your
satisfaction.
Once you are happy with the statement cache size, then tune the DRCP pool
session_cached_cursors value. Monitor AWR reports with the goal to make the session cursor cache
hits close to the number of soft parses. Soft parses can be calculated from parse count (total) minus parse
count (hard).
Then only the Oracle Network configuration file tnsnames.ora needs to be modified:
salespool=(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)
(HOST=myhost.dom.com)
(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=sales)
(SERVER=POOLED)))
If these changes are made and the database is not actually configured for DRCP, connections will not
succeed and an error will be returned to PHP.
224
Using DRCP in PHP
Closing Connections
With the new version of the OCI8 extension, closing a persistent connection now releases the server to the
pool allowing optimal pool usage.
PHP scripts that do not currently use oci_close() should be examined to see if they can use it to
return connections to the pool, allowing maximum use of pooled servers:
<?php
. . .
oci_commit($conn);
oci_close($conn); // Release the connection to the DRCP pool
. . .
. . .
oci_commit($conn);
oci_close($conn);
?>
Remember to free statement and other resources that increase the reference count on the PHP connection
and will stop a DB connection closing.
Prior to OCI8 1.3, closing oci_connect() and oci_new_connect() connections had an effect but
closing an oci_pconnect() connection was a no-op. With OCI8 1.3, oci_close() on a persistent
connection rolls back any uncommitted transaction. Also the extension will do a roll back when all PHP
variables referencing a persistent connection go out of scope, for example if the connection was opened in a
function and the function has now finished. For DRCP, in addition to the rollback, the connection is also
released; a subsequent oci_pconnect() may get a different connection. For DRCP, the benefit is that
scripts taking advantage of persistent connections can explicitly return a server to the pool when non-
database processing occurs, allowing other concurrent scripts to make use of the pooled server.
With pooled servers, the recommendation is to release the connection when the script does a significant
amount of processing that is not database related. Explicitly control commits and rollbacks so there is no
unexpectedly open transaction when the close or end-of-scope occurs. Scripts coded like this can use
oci_close() to take advantage of DRCP but still be portable to older versions of the OCI8 extension.
If behavior where oci_close() is a no-op for all connection types is preferred, set the existing php.ini
parameter oci8.old_oci_close_semantics to On.
225
PHP Scalability and High Availability
Monitoring DRCP
Data dictionary views are available to monitor the performance of DRCP. Database administrators can
check statistics such as the number of busy and free servers, and the number of hits and misses in the pool
against the total number of requests from clients. The views are:
● V$PROCESS
● V$SESSION
● DBA_CPOOL_INFO
● V$CPOOL_STATS
● V$CPOOL_CC_STATS
The DRCP statistics are reset each time the pool is started.
For RAC, there are GV$CPOOL_STATS and GV$CPOOL_CC_STATS views corresponding to the instance-
level views. These record DRCP statistics across clustered instances. If a database instance in a cluster is
shut down, the statistics for that instance are purged from the GV$ views.
226
Monitoring DRCP
PROGRAM
------------------------------------------------
oracle@localhost (N001)
The V$SESSION view will show information about the currently active DRCP sessions. It can also be joined
with V$PROCESS via V$SESSION.PADDR = V$PROCESS.ADDR to correlate the views.
DBA_CPOOL_INFO View
DBA_CPOOL_INFO displays configuration information about all DRCP pools in the database. The columns
are equivalent to the dbms_connection_pool.configure_pool() settings described in Table 11, with
the addition of a STATUS column. The status is ACTIVE if the pool has been started and INACTIVE
otherwise. Note the pool name column is called CONNECTION_POOL. For example, to check whether the
pool has been started and what the maximum number of pooled servers is set to:
V$CPOOL_STATS View
V$CPOOL_STATS displays information about the DRCP statistics for an instance.
Column Description
POOL_NAME Name of the Database Resident Connection Pool.
NUM_OPEN_SERVERS Total number of busy and free servers in the pool (including the
authentication servers).
NUM_BUSY_SERVERS Total number of busy servers in the pool (not including the
authentication servers).
NUM_AUTH_SERVERS Number of authentication servers in the pool.
NUM_REQUESTS Number of client requests.
227
PHP Scalability and High Availability
Column Description
NUM_HITS Total number of times client requests found matching pooled
servers and sessions in the pool.
NUM_MISSES Total number of times client requests could not find a matching
pooled server and session in the pool.
NUM_WAITS Total number of client requests that had to wait due to non-
availability of free pooled servers.
WAIT_TIME Reserved for future use.
CLIENT_REQ_TIMEOUTS Reserved for future use.
NUM_AUTHENTICATIONS Total number of authentications of clients done by the pool.
NUM_PURGED Total number of sessions purged by the pool.
HISTORIC_MAX Maximum size that the pool has ever reached.
The V$CPOOL_STATS view can be used to assess how efficient the pool settings are. This example query
shows an application using the pool effectively. The low number of misses indicates that servers and
sessions were reused. The wait count shows just over 1% of requests had to wait for a pooled server to
become available. Increasing the number of pooled servers would reduce the number of waits:
SQL> select num_requests,num_hits,num_misses,num_waits
from v$cpool_stats
where pool_name = 'SYS_DEFAULT_CONNECTION_POOL';
If oci8.connection_class is set (allowing pooled servers and sessions to be reused) then NUM_MISSES is
low. If the pool maxsize is too small for the connection load then NUM_WAITS is high:
NUM_REQUESTS NUM_HITS NUM_MISSES NUM_WAITS
------------ ---------- ---------- ----------
50352 50348 4 50149
If the connection class is left unset, the sharing of pooled servers is restricted to within each web server
process. Even if the pool size is large, session sharing is limited causing poor utilization of pooled servers
and contention for them:
NUM_REQUESTS NUM_HITS NUM_MISSES NUM_WAITS
------------ ---------- ---------- ----------
64152 17941 46211 15118
228
Monitoring DRCP
V$CPOOL_CC_STATS View
V$CPOOL_CC_STATS displays information about the connection class level statistics for the pool per
instance. The columns are similar to those of V$CPOOL_STATS described in Table 6, with a CCLASS_NAME
column giving the name of the connection sub-pool the results are for:
SQL> select cclass_name,num_requests,num_hits,num_misses
from v$cpool_cc_stats;
For PHP, the CCLASS_NAME value is composed of the value of the username and of the
oci8.connection_class value used by the connecting PHP processes. This view shows an application
known as MYPHPAPP using the pool effectively.
The last line of the example output shows a system generated class name for an application that did not
explicitly set oci8.connection_class. Pooling is not effectively used in this case. Such an entry could be
an indication that a php.ini file is mis-configured.
For programs like SQL*Plus that were not built using Oracle’s Session Pooling APIs, the class name will
be SHARED. The example shows that ten such connections were made as the user SCOTT. Although these
programs share the same connection class, new sessions are created for each connection, keeping each
cleanly isolated from any unwanted session changes.
229
PHP Scalability and High Availability
FAN support is only available when PHP is linked with Oracle Database 10g Release 2 or 11g libraries and
connecting to Oracle Database 10g Release 2 or 11g.
230
High Availability with FAN and RAC
$conn = doConnect();
$err = doSomeWork($conn);
if (isConnectionError($err)) {
// reconnect, find what was committed, and retry
$conn = doConnect();
$err = checkApplicationStateAndContinueWork($conn);
}
if ($err) {
// end the application
handleError($err);
}
No PHP script changes are needed. The connection balancing is handled transparently by the Oracle Net
listener.
231
PHP Scalability and High Availability
232
CHAPTER 15
GLOBALIZATION
This Chapter discusses global application development in a PHP and Oracle Database environment. It
addresses the basic tasks associated with developing and deploying global Internet applications, including
developing locale awareness, constructing HTML content in the user-preferred language, and presenting
data following the cultural conventions of the locale of the user.
Building a global Internet application that supports different locales requires good development
practices. A locale refers to a national language and the region in which the language is spoken. The
application itself must be aware of the locale preference of the user and be able to present content
following the cultural conventions expected by the user. It is important to present data with appropriate
locale characteristics, such as the correct date and number formats. Oracle Database is fully
internationalized to provide a global platform for developing and deploying global applications.
For example, for a German user in Germany running an application in Unicode, NLS_LANG should be set to
GERMAN_GERMANY.AL32UTF8
The language and territory settings control Oracle behaviors such as the Oracle date format, error message
language, and the rules used for sort order. The character set AL32UTF8 is the Oracle name for UTF-8.
The character set can also be passed as a parameter to the OCI8 connection functions. Doing this is
recommended for performance reasons, even if NLS_LANG is also set.
If the character set used by PHP does not match the character set used by the database, Oracle will try
to convert when data is inserted and queried. This may reduce performance. Also an accurate mapping is
not always be possible, resulting in data being converted to question marks.
There are other environment variables that can be used to set particular aspects of globalization. For
information on NLS_LANG and other Oracle language environment variables, see the Oracle
documentation.
The section Configuring Apache HTTP Server on Linux in the Apache chapter discusses how environment
variables can be set for Apache.
When Zend Core for Oracle is installed on Apache, you can set NLS_LANG in /etc/profile:
233
Globalization
If the globalization settings are invalid, PHP may fail to connect to Oracle and give an error like
ORA-12705: Cannot access NLS data files or invalid environment specified
After executing this, Oracle error messages will be in German and the default date format will have
changed.
Caution: When changing the globalization settings for a persistent connection, the next time the connection is used, the altered
values will still be in effect.
If PHP is installed on Oracle HTTP Server, you must set NLS_LANG as an environment variable in
$ORACLE_HOME/opmn/conf/opmn.xml:
<ias-component id="HTTP_Server">
<process-type id="HTTP_Server" module-id="OHS">
<environment>
<variable id="PERL5LIB" value="D:\oracle\1012J2EE\Apache\Apache\
mod_perl\site\5.6.1\lib"/>
<variable id="PHPRC" value="D:\oracle\1012J2EE\Apache\Apache\conf"/>
<variable id="NLS_LANG" value="german_germany.al32utf8"/>
</environment>
<module-data>
<category id="start-parameters">
<data id="start-mode" value="ssl-disabled"/>
</category>
</module-data>
<process-set id="HTTP_Server" numprocs="1"/>
</process-type>
</ias-component>
234
Manipulating Strings
Manipulating Strings
PHP was designed to work with the ISO-8859-1 character set. To handle other character sets, there are
several extensions that can be used. The common extensions are mbstring and iconv. Recently a new intl
package has been added to PECL. It implements some International Components for Unicode (ICU)
functionality and is likely to become popular.
To enable the mbstring extension in PHP using the Zend Core for Oracle Administration Console:
1. Open the Zend Core for Oracle Administration Console by entering the URL in a web browser:
http://machine_name/ZendCore
2. Login and navigate to Configuration > Extensions > Zend Core Extensions.
3. Enable the mbstring extension.
4. Save the configuration.
5. Restart Apache.
When you have enabled the mbstring extension and restarted the web server, several configuration options
become available in the Zend Core for Oracle Administration Console. Refresh the browser on the
Extension Configuration page to see these mbstring configuration options.
You can change the behavior of the standard PHP string functions by setting
mbstring.func_overload to one of the Overload settings. For more information, see the PHP mbstring
reference manual at http://www.php.net/mbstring.
Your application code should use functions such as mb_strlen() to calculate the number of characters
in strings. This may return different values than strlen(), which returns the number of bytes in a string.
$s = $_SERVER["HTTP_ACCEPT_LANGUAGE"]
235
Globalization
When you write global applications implemented in different programming environments, you should
enable the synchronization of user locale settings between the different environments. For example, PHP
applications that call PL/SQL procedures should map the ISO locales to the corresponding NLS_LANGUAGE
and NLS_TERRITORY values and change the parameter values to match the locale of the user before calling
the PL/SQL procedures. The PL/SQL UTL_I18N package contains mapping functions that can map between
ISO and Oracle locales.
Table 18 shows how some commonly used locales are defined in ISO and Oracle environments.
Table 18: Locale representations in ISO, SQL and PL/SQL programming environments.
Locale Locale ID NLS_LANGUAGE NLS_TERRITORY
Chinese (P.R.C.) zh-CN SIMPLIFIED CHINESE CHINA
236
Encoding HTML Pages
The charset parameter specifies the encoding for the HTML page. The possible values for the charset
parameter are the IANA names for the character encodings that the browser supports.
The charset parameter specifies the encoding for the HTML page. As with the Content-Type HTTP
Header, the possible values for the charset parameter are the IANA (Internet Assigned Numbers
Authority) names for the character encodings that the browser supports.
default_charset = UTF-8
To enable character set encoding of HTML pages using the Zend Core for Oracle Administration Console.
1. Open the Zend Core for Oracle Administration Console by entering the URL in a web browser:
http://<machine_name>/ZendCore
2. Login and navigate to Configuration > PHP > Data Handling.
3. Enter UTF-8 for the default_charset parameter.
4. Save the configuration.
5. Restart Apache.
This setting does not imply any conversion of outgoing pages. Your application must ensure that the
server-generated pages are encoded in UTF-8.
237
Globalization
Strings in PHP
You should externalize translatable strings within your PHP application logic, so that the text is readily
available for translation. These text messages can be stored in flat files or database tables depending on the
type and the volume of the data being translated. PHP's gettext extension is often used for this purpose.
Static Files
Static files such as HTML and text stored as images are readily translatable. When these files are translated,
they should be translated into the corresponding language with UTF-8 as the file encoding. To differentiate
the languages of the translated files, stage the static files of different languages in different directories or
with different file names.
238
Presenting Data Using Conventions Expected by the User
Session altered.
Session altered.
The format '99G999D99' contains the 'G' thousands separator and 'D' decimal separator at the appropriate
places in the desired output number. In the two territories, the actual character displayed is different.
The equivalent PHP example is:
<?php
239
Globalization
?>
If NLS_TERRITORY had instead been set to america the output would have been correct:
string(7) "123.567"
float(123.567)
The problem can also occur depending on the territory component of NLS_LANG, or the value of
NLS_NUMERIC_CHARACTERS. The latter variable can be used to override the number format while other
territory settings remain in effect. It can be set as an environment variable:
# export NLS_NUMERIC_CHARACTERS=”.,”
# apachectl start
240
Presenting Data Using Conventions Expected by the User
2 substr(first_name,1,1)||'.'||last_name "EmpName",
3 to_char(hire_date,'DS') "Hiredate",
4 to_char(hire_date,'DL') "Long HireDate"
5 from employees
6* where employee_id <105;
In addition to these three format styles you can customize the format using many other date format
specifiers. Search the Oracle documentation for “datetime format elements” to see a list.
If the date format derived from the NLS_LANG setting is not the one you want for your PHP session,
you can override the format by setting the environment variable NLS_DATE_FORMAT in the shell that starts
your web server or PHP executable:
# export NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'
# apachectl start
Alternatively you can set it in a logon trigger, or change it after connecting in PHP:
$s = oci_parse($c, "alter session set nls_date_format='YYYY-MM-DD HH24:MI:SS'");
oci_execute($s);
241
Globalization
One advantage of setting the date format globally instead of using to_char() is it allows PHP and Oracle
to share a common format for inserts and queries:
<?php
?>
242
Presenting Data Using Conventions Expected by the User
When the NLS_LANGUAGE parameter is set to French, the server message appears as follows:
ORA-00942: table ou vue inexistante
For more discussion of globalization support features in Oracle Database XE, see Working in a Global
Environment in the Oracle Database Express Edition 2 Day Developer Guide.
243
Globalization
244
CHAPTER 16
$user = "system";
$password = "systempwd";
$dbase = "localhost/XE";
If PHP is running on the same machine as the database, then also set:
$oracle_on_localhost = TRUE;
This specifies to test functionality where the Oracle database directly accesses files created by PHP. If
the database and PHP are not using the same file system, this is not possible and the variable should
be left FALSE.
245
Testing PHP and the OCI8 Extension
Finally, with OCI8 1.3, and you are using Oracle Database 11g Connection Pooling, set:
$test_drcp = TRUE
To use DRCP, the pool must be enabled and the connection string must specify that a pooled database
server should be used.
Alternatively, with PHP 5.2.4 onwards, environment variables can be set instead of editing details.inc.
At the shell, set these environment variables.
$ export PHP_OCI8_TEST_USER=system
$ export PHP_OCI8_TEST_PASS=systempwd
$ export PHP_OCI8_TEST_DB=localhost/XE
$ export PHP_OCI8_TEST_DB_ON_LOCALHOST=TRUE
$ export PHP_OCI8_TEST_DRCP=FALSE
variables_order = "EGPCS"
Without this flag, the Oracle environment variables are not propagated through the test system and
tests fail to connect.
3. Set any necessary Oracle environment variables in your shell. For example, for PHP linked with Oracle
Database XE enter:
$ export OH=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
$ . $OH/bin/oracle_env.sh
Note the space after the full stop. For other database versions run oraenv and enter the identifier of
your database:
$ . /usr/local/bin/oraenv
ORACLE_SID = [] ? orcl
If Oracle is on a different machine, you may manually need to set the environment variables set
by these scripts.
4. Run PHP’s test suite with:
$ cd php-5.2.7
$ make test
==============================================================
246
Running OCI8 Tests
PHP : /home/myhome/php-5.2.7/sapi/cli/php
PHP_SAPI : cli
PHP_VERSION : 5.2.7
ZEND_VERSION: 2.2.0
PHP_OS : Linux - Linux def 2.6.24-19-generic
INI actual : /usr/local/apache/conf/php.ini
More .INIs :
CWD : /home/myhome/php-5.2.7
Extra dirs :
==============================================================
Running selected tests.
PASS oci_bind_array_by_name() and invalid values 1 [array_bind_001.phpt]
PASS oci_bind_array_by_name() and invalid values 2 [array_bind_002.phpt]
PASS oci_bind_array_by_name() and invalid values 3 [array_bind_003.phpt]
...
Successful tests begin with PASS. Tests that are to be skipped in the current configuration are marked SKIP.
Failing tests are marked FAIL. A summary of the failing tests is given at the completion of the tests.
The TEST_PHP_EXECUTABLE variable contains the PHP binary with which to test demotest.phpt. In the
example, the same PHP binary is used to run the controlling run-tests.php script, but they could be different
executables. The test output is similar to the previous output.
247
Testing PHP and the OCI8 Extension
Occasionally a few tests are known to fail. These might be for unfixed bugs, or where the PHP test
infrastructure doesn't practically allow tests to accept differences in versions of Oracle. If you use the latest
OCI8 extension with an older version of PHP, differences in PHP's var_dump() output will make tests
appear to fail.
--TEST--
Demo to test the Test system
--SKIPIF--
<?php
if (!extension_loaded('oci8')) die("skip no oci8 extension");
?>
--FILE--
<?php
require dirname(__FILE__).'/connect.inc';
$s = oci_parse($c, "select user from dual");
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
echo "Done\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
array(1) {
["USER"]=>
array(1) {
[0]=>
string(6) "SYSTEM"
}
}
===DONE===
The test begins with a comment that is displayed when the test runs. The SKIPIF section causes the test to
be skipped when the OCI8 extension is not enabled in PHP. The FILE section is the PHP code to be
executed. The EXPECT section has the expected output. The file connect.inc is found in
php-5.2.7/ext/oci8/tests/connect.inc. It includes details.inc, connects to Oracle, and returns the connection
resource in $c.
In PHP 5.3, you can use PHP's inbuilt constant __DIR__ instead of dirname(__FILE__) to locate the
correct included files, but this will limit test compatibility.
The line ===DONE=== is outside the executed script and is echoed verbatim, verifying that the script
completed. The extra PHP block containing exit(0) makes running the test directly in PHP a little cleaner.
Some of the PHPT content is shown, but only the actual, and not the expected output is displayed. This can
make it easier to quickly validate tests:
248
Creating OCI8 Tests
$ php demotest.phpt
--TEST--
Demo to test the Test system
--SKIPIF--
--FILE--
array(1) {
["USER"]=>
array(1) {
[0]=>
string(6) "SYSTEM"
}
}
Done
===DONE===
The page Writing Tests at http://qa.php.net/write-test.php shows other sections a test file can
have, including ways to set arguments and php.ini parameters. This page also has generic examples and
helpful information on writing tests.
Writing good units tests is an art. Making a test portable, accurate, simple and self-diagnosing requires
fine judgment and tidy programming. Application level testing brings even more challenges. There are
several PHP test frameworks with sophisticated features that might be more suited to your application test
suites. They include PHPUnit and SimpleTest.
The solution is to configure the database to suit the load. For the errors above, the number of “processes”
that Oracle can handle needs to be increased.
249
Testing PHP and the OCI8 Extension
$ su – oracle
Password:
$ export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
$ . $ORACLE_HOME/bin/oracle_env.sh
$ sqlplus / as sysdba
4. Check the current value of processes using the SHOW PARAMETER PROCESSES command:
6. Restart the database using the SHUTDOWN IMMEDIATE, followed by the STARTUP command:
7. Use the SHOW PARAMETER PROCESSES command to confirm the new value is in effect:
250
Configuring the Database For Testing
SQL> exit
251
Testing PHP and the OCI8 Extension
252
APPENDIX A
<?php
?>
253
Tracing OCI8 Internals
Many of these calls just allocate local resources (handles) and set local state (attributes), but some require a
round trip to the database.
One of these is the OCITransRollback() call near the end of the script. The OCI_DEFAULT flag said
not to auto-commit and there was no explicit oci_commit() call. As part of PHP’s end of HTTP request
shutdown at the conclusion of the script, the rollback was issued.
If you change to auto-commit mode you will not see a call to OCITransCommit() because the commit
message is piggy-backed with Oracle's statement execution call, thus saving a round-trip. If a script only
inserts one row it is fine to auto-commit. Otherwise, do the transaction management yourself.
254
APPENDIX B
The web server must be restarted for any changes to take effect.
The location of php.ini and the current values of the OCI8 parameters can be found by running the
command line PHP executable with the -i option, or by loading this script in a browser:
<?php
phpinfo();
?>
If you are using Windows Vista, remember to edit php.ini using administrative privileges.
255
OCI8 php.ini Parameters
256
APPENDIX C
Note: The OCI8 1.3 extension builds and runs with PHP 4 too. If you are using PHP 4 and cannot upgrade to PHP 5, you should
replace the OCI8 code with the new version to get improved stability and performance optimizations. Steps to do this are given in
this book.
One side effect of renaming the function names is that user contributed comments in the PHP manual
(http://www.php.net/oci8) are found in two different places. The comments are either on the page
for the old syntax, or on the page for the new syntax. Where a function has an alias, check both manual
pages for user tips.
Function names in PHP are case insensitive and it is common to see the PHP 4 names written with a
capitalized prefix.
Table 21 shows the OCI8 function names in PHP 4 and PHP 5 where names or functionality differ.
Table 21: Relationship between OCI8's PHP 4 and PHP 5 function names.
257
OCI8 Function Names in PHP 4 and PHP 5
258
OCI8 Function Names in PHP 4 and PHP 5
Note: Methods
on a collection
object can be
used in
addition to
these
functions.
ocifreecollection() oci_free_collection()
ocicollappend() oci_collection_append()
ocicollgetelem() oci_collection_element_get()
ocicollassign() OCI-Collection->assign()
ocicollassignelem() oci_collection_element_assign()
ocicollsize() oci_collection_size()
ocicollmax() oci_collection_max()
ocicolltrim() oci_collection_trim()
259
OCI8 Function Names in PHP 4 and PHP 5
260
APPENDIX D
Table 22: Relationship between the OCI8 and the obsolete Oracle extensions.
Operation Action ORA function (obsolete) OCI8 function
Connection Open connection ora_logon() oci_connect()
261
The Obsolete Oracle Extension
262
Oracle and OCI8 Comparison
263
The Obsolete Oracle Extension
264
APPENDIX E
RESOURCES
This Appendix gives links to documentation, resources and articles discussed in this book, and to other
web sites of interest. This book itself can be found online at:
http://www.oracle.com/technology/tech/php/pdf/underground-php-oracle-
manual.pdf
AskTom
General Oracle language and application design help
http://asktom.oracle.com/
Oracle Metalink
Oracle Support web site
http://metalink.oracle.com/
Oracle Documentation
Oracle Documentation Portal
http://tahiti.oracle.com/
265
Resources
266
Selected PHP and Oracle Books
Easy Oracle PHP: Create Dynamic Web Pages with Oracle Data
Mladen Gogala, Rampant TechPress, 2006
267
Resources
PHP Snapshots
Snapshots of PHP's source code and Windows binaries
http://snaps.php.net/
PECL OCI8
Source package
http://pecl.php.net/package/oci8
PECL PDO_OCI
Source snapshot
http://pecl.php.net/package/PDO_OCI
268
PHP Links
PHP Links
PHP Home Page
http://www.php.net/
PHP Wiki
http://wiki.php.net/
269
Resources
270
GLOSSARY
Anonymous Block
A PL/SQL block that appears in your application and is not named or stored in the database. In many
applications, PL/SQL blocks can appear wherever SQL statements can appear. A PL/SQL block groups
related declarations and statements. Because these blocks are not stored in the database, they are
generally for one-time use.
AWR
Automatic Workload Repository. Used to store and report statistics on database performance.
Binding
A method of including data in SQL statements that allows SQL statements to be efficiently reused with
different data.
BFILE
The BFILE datatype stores unstructured binary data in operating-system files outside the database. A
BFILE column or attribute stores a file locator that points to an external file containing the data.
BLOB
The BLOB datatype stores unstructured binary data in the database.
CHAR
The CHAR datatype stores fixed-length character strings in the database.
Collection Type
A collection is an ordered group of elements, all of the same type. Each element has a unique subscript
that determines its position in the collection. PL/SQL datatypes TABLE and VARRAY enable collection
types such as arrays, bags, lists, nested tables, sets and trees.
Connection Identifier
The string used to identify which database to connect to, for example, localhost/XE.
271
Glossary
Connection String
The full string used to identify which database to connect to commonly used for SQL*Plus. It contains
the username, password and connect identifier, for example, hr/hrpwd@localhost/XE.
CVS
Concurrent Versions System, an open source version control system used for development of PHP.
Data Dictionary
A set of tables and views that are used as a read-only reference about the database.
Database
A database stores and retrieves data. Each database consists of one or more data files. Although you
may have more than one database per machine, typically a single Oracle database contains multiple
schemas. A schema is often equated with a user. Multiple applications can use the same database
without any conflict by using different schemas.
Database Link
A pointer that defines a one-way communication path from an Oracle Database server to another
database server. A database link connection allows local users to access data on a remote database.
Database Name
The name of the database. In PHP, this is the text used in oci_connect() calls. Also see Easy Connect.
Datatype
Each column value and constant in a SQL statement has a datatype, which is associated with a specific
storage format, constraints, and a valid range of values. When you create a table, you must specify a
datatype for each of its columns. For example, NUMBER, or DATE.
DATE
The DATE datatype stores point-in-time values (dates and times) in a database table.
DBA
Database Administrator. A person who administers the Oracle database. This person is a specialist in
Oracle databases, and would usually have SYSDBA access to the database.
DDL
SQL’s Data Definition Language. SQL statements that define the database structure or schema, like
CREATE, ALTER, and DROP.
272
Glossary
DML
SQL’s Data Manipulation Language. SQL statements that define or manage the data in the database,
like SELECT, INSERT, UPDATE and DELETE.
Easy Connect
A simple hostname and database name string that is used to identify which database to connect to.
HR
The sample user created by default with an Oracle seed database installation. The hr user has access to
the Human Resources demonstration tables in the HR schema.
Index
Indexes are optional structures associated with database tables. Indexes can be created to increase the
performance of data retrieval.
Instance
The Oracle Instance is the running component of an Oracle database server. When an Oracle database
is started, a system global area (SGA) is allocated and Oracle background processes are started. The
combination of the background processes and memory buffers is called an Oracle instance.
Instant Client
The Oracle Instant Client is a small set of libraries, which allow you to connect to an Oracle Database. A
subset of the full Oracle Client, it requires minimal installation but has full functionality. Instant Client
is downloadable from OTN and is usable and distributable for free.
LOB
A large object. LOBS may be persistent (stored in the database) or temporary. See CLOB, BLOB, and
BFILE.
LOB Locator
A “pointer” to LOB data.
Materialized View
A materialized view provides access to table data by storing the results of a query in a separate
database schema object. Unlike an ordinary view, which does not take up any storage space or contain
any data, a materialized view contains the rows resulting from a query against one or more base tables
or views.
273
Glossary
NUMBER
The NUMBER datatype stores fixed and floating-point numbers in the database.
Packages
A package is a group of related PL/SQL procedures and functions, along with the cursors and variables
they use, stored together in the database for continued use as a unit.
Object Privilege
A right to perform a particular action on a specific database schema object. Different object privileges
are available for different types of schema objects. The privilege to delete rows from the departments
table is an example of an object privilege.
ORACLE_HOME install
An Oracle Client or Oracle Database install. These installs contain all software required by PHP in a
directory hierarchy. This set of directories includes binaries, utilities, configuration scripts,
demonstration scripts and error message files for each component of Oracle. Any program using Oracle
typically requires the ORACLE_HOME environment variable to be set to the top level installation
directory.
Oracle Net
The networking component of Oracle that connects client tools such as PHP to local or remote
databases. The Oracle Net listener is a process that handles connection requests from clients and passes
them to the target database.
OTN
The Oracle Technology Network is Oracle’s free repository of articles on Oracle technologies. It also
hosts software downloads and many discussion forums, including one on PHP.
Package
A group of PL/SQL procedures, functions, and variable definitions stored in the Oracle database.
Procedures, functions, and variables in packages can be called from other packages, procedures, or
functions.
274
Glossary
PEAR
The PHP Extension and Application Repository (PEAR) is a repository for reusable packages written in
PHP.
PECL
The PHP Extension Community Library (PECL) is a repository of PHP extensions that can be linked
into the PHP binary.
PHP
A popular, interpreted scripting language commonly used for web applications. PHP is a recursive
acronym for “PHP: Hypertext Preprocessor”.
php.ini
The configuration file used by PHP. Many (but not all) options that are set in php.ini can also be set at
runtime using ini_set().
PL/SQL
Oracle’s procedural language extension to SQL. It is a server-side, stored procedural language that
enables you to mix SQL statements with procedural constructs. With PL/SQL, you can create and run
PL/SQL program units such as procedures, functions, and packages. PL/SQL program units generally
are categorized as anonymous blocks, stored functions, stored procedures, and packages.
Prepared Statement
A SQL statement that has been parsed by the database. In Oracle, it is generally called a parsed
statement.
Regular Expression
A pattern used to match data. Oracle has several functions that accept regular expressions.
Round Trip
A call and return sequence from PHP OCI8 to the Database performed by the underlying driver
libraries. Each round trip takes network time and machine CPU resources. The fewer round trips
performed, the more scalable a system is likely to be. PHP OCI8 functions may initiate zero or many
round trips.
Schema
A schema is a collection of database objects. A schema is owned by a database user and has the same
name as that user. Schema objects are the logical structures that directly refer to the database's data.
Schema objects include structures like tables, views, and indexes.
275
Glossary
SDK
Software Development Kit. Oracle Instant Client has an SDK for building programs that use the Instant
Client libraries.
Sequence
A sequence (a sequential series of numbers) of Oracle integers of up to 38 digits defined in the
database.
Service Name
A service name is a string that is the global database name, comprised of the database name and
domain name. You can obtain it from the SERVICE_NAMES parameter in the database initialization
parameter file or by using SHOW PARAMETERS in SQL*Plus. It is used during connection to identify
which database to connect to.
SQL*Plus
The traditional command line tool for executing SQL statements available with all Oracle databases.
Although recently superseded by GUI tools like Oracle’s free SQL Developer, SQL*Plus remains hugely
popular. It is also convenient to show examples using SQL*Plus.
Synonym
A synonym is an alias for any database table, view, materialized view, sequence, procedure, function,
package, type, Java class schema object, user-defined object type, or another synonym.
SYS
An Oracle database administrative user account name. sys has access to all base tables and views for
the database data dictionary.
276
Glossary
SYSDBA
An Oracle database system privilege that, by default, is assigned only to the sys user. It enables sys to
perform high-level administrative tasks such as starting up and shutting down the database.
SYSOPER
Similar to sysdba, but with a limited set of privileges that allows basic administrative tasks without
having access to user data.
SYSTEM
An Oracle database administrative user account name that is used to perform all administrative
functions other than starting up and shutting down the database.
System privilege
The right to perform a particular action, or to perform an action on any database schema objects of a
particular type. For example, the privileges to create tables and to delete the rows of any table in a
database.
Table
Tables are the basic unit of data storage. Database tables hold all user-accessible data. Each table has
columns and rows.
Tablespace
Tablespaces are the logical units of Oracle data storage made up of one or more datafiles. Tablespaces
are often created for individual applications because tablespaces can be conveniently managed. Users
are assigned a default tablespace that holds all the data the users creates. A database is made up of
default and DBA-created tablespaces.
Temporary LOB
See LOB.
Temporary Table
A Global Temporary Table is a special table that holds session-private data that exists only for the
duration of a transaction or session. The table is created before the application runs.
Tnsnames.ora
The Oracle Net configuration file used for connecting to a database. The file maps an alias to a local or
remote database and allows various configuration options for connections. The alias is used in the PHP
connection string. TNS stands for Transparent Network Substrate.
277
Glossary
Transaction
A sequence of SQL statements whose changes are either all committed, or all rolled back.
Trigger
A stored procedure associated with a database table, view, or event. The trigger can be called after the
event, to record it, or take some follow-up action. The trigger can be called before the event, to prevent
erroneous operations or fix new data so that it conforms to business
User
A database user is often equated to a schema. Each user connects to the database with a username and
secret password, and has access to tables, and so on, in the database.
View
Views are customized presentations of data in one or more tables or other views. A view can also be
considered a stored query. Views do not actually contain data. Rather, they derive their data from the
tables on which they are based, referred to as the base tables of the views.
XMLType
XMLType is a database datatype that can be used to store XML data in table columns.
278
The Underground PHP
and Oracle Manual
About this Book
This book is for PHP programmers developing applications for Oracle
Database. It bridges the gap between the many PHP and Oracle
books available and shows how to use the PHP scripting language
with Oracle Database. You may be starting out with PHP for your
Oracle Database. You may be a PHP programmer wanting to learn
Oracle. You may be unsure how to install PHP or Oracle. Or you may
just want to know the latest best practices. This book gives you
the fundamental building blocks needed to create high-performance
PHP Oracle Web applications.