SlideShare a Scribd company logo
PHP Indonesia
Saturday, 5th May 2102
Presented by:
Nur Hidayat
 Sehari-hari sebagai Software Developer di
ESQ LeadershipCenter
 Di waktu luang mencoba mencari segenggam
berlian untuk istri dan anak-anak
 Introduction to Oracle
 PHP Oracle Extensions
 InstalasiOracle Database XE
 Zend ServerVirtualBox Appliance
 Oracle DatabaseAdministration
 Interacting with Oracle Database XE
 Programming PHP+Oracle
 1977,Larry Ellison founded Software Development Laboratories (SDL)
 Changed name in 1979 to Relational Software Inc. (RSI),
 1979 created the first commercial SQL-based relational database.
 Changed name in 1983 to Oracle Corporation.
 1983,Oracle 3 the first relational database to run on mainframes,
minicomputers, and PCs
 1988, PL/SQL, the first built-in procedural language with very high
influence from C andAda.
 1992,Oracle7, released in 1992, introduced PL/SQL stored procedures
and triggers.
 1995, the first to 64-bit database.
 1999, the database with XML support
 2001,Oracle Real ApplicationClusters (Oracle RAC)
 2003, enterprise grid computing environment.
 In late 2005, released its first full-featured, 100 percent free database
server, Oracle Database XE.
 2007,Oracle 11g, improved Manageability, diagnosability, and availability
See Also: http://www.oracle.com/technetwork/issue-archive/2007/07-jul/ o4730-
090772.html for an article summarizing the evolution of Oracle Database
 Express Edition
 Includes all feature available in Enterprise Edition
 Limited to single CPU
 Limited to 1 GB or RAM
 Limited to 4 GB (10g) or 11 GB (11g) of data
 Very simple installation
 Personal Edition
 Includes all feature available in Enterprise Edition
 Limited to 1 user
 Standard Edition One
 Limited to 2 CPU
 Minus Oracle RAC
 Standard Edition
 Limited to 4 CPU
 Support Oracle RAC
 Enterprise Edition
 No CPU Limitation
 Advanced High Availability (FlashbackTable,
Flashback Database, Data Guard, etc.)
 TimesTen, in memory database
 Berkeley DB, embedded database
 MySQL, leading free open source database
 Application Server, web server which
integrate seamlessly with oracle database
 E-Business Suite
 PeopleSoft
 JD Edwards
 .... and many more
 Oracle Extension,This extension was designed for Oracle 7 and
should be avoided since it uses a deprecated version of the Oracle
API that will not be available in future releases.
 ODBC within Windows, while ODBC provides some connection
pooling and other built-in features, it lacks access to many of
Oracle’s capabilities such as the ability to store large objects
(LOBs).
 OCI8 Extension, this extension supports most of Oracle’s Oracle
Call Interface (OCI).
 PDO Extension.This portable databaseAPI makes it easy to
change your database without changing a lot of your code.
 Database Abstraction Libraries
 ADOdb
 PEAR DB
 PEAR MDB2
 PilihanWeb Server
 XAMPP
 Zend Server
 InstalasiOracle XE diWindows
 Import ZendAppliance toVirtualBox
 Username: root
 Password: zend1234
 Konfigurasi Zend Server
 http://localhost:10081/
 KonfigurasiOracle Database XE
 /etc/init.d/oracle-xe configure
 Starting and Stopping Oracle Database
 Database and Instance
 Oracle Storage Structure
 Oracle Memory Structure
 Schemas and Users
 Listener
 The database listener is an Oracle Net program that
listens for and responds to requests to the database.
 Database
 The database is another process that runs in
memory, and needs to be started beforeOracle Net
can handle connection requests to it.
 Requirements, user must included in
 dba group on Linux, or
 ORA_DBA on Windows
 On Linux
 Starting
▪ From Gnome: Select Applications > Oracle Database 10g
Express Edition > Start Database.
▪ From KDE: Select K Menu > Oracle Database 10g Express
Edition > Start Database.
▪ From linux shell: # /etc/init.d/oracle-xe restart
 Stopping
▪ From Gnome: Select Applications > Oracle Database 10g
Express Edition > Stop Database.
▪ From KDE: Select K Menu > Oracle Database 10g Express
Edition > Stop Database.
▪ From linux shell: # /etc/init.d/oracle-xe stop
 OnWindows
 Starting
▪ From Menu: Start > Oracle Database 10g Express Edition > Start Database.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleXETNSListener service. Right click on the Listener
service, and select Start.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleServiceXE service. Right click on the Listener
service, and select Start.
 Stopping
▪ From Menu: Start > Oracle Database 10g Express Edition > Stop Database.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleXETNSListener service. Right click on the Listener
service, and select Stop.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleServiceXE service. Right click on the Listener
service, and select Stop.
 An Oracle database server
consists of a database and at
least one database instance
 Database
 A database is a set of files,
located on disk, that store
data.These files can exist
independently of a database
instance.
 Database instance
 An instance is a set of
memory structures that
manage database files.The
instance consists of a shared
memory area, called the
system global area (SGA),
and a set of background
processes.An instance can
exist independently of
database files.
PHP Oracle
PHP Oracle
 Physical Storage Structures
 Data files
▪ Every Oracle database has one or more physical data
files, which contain all the database data.
 Control files
▪ Every Oracle database has a control file. Metadata
specifying the physical structure of the database.
 Online redo log files
▪ Every Oracle Database has an online redo log. An online
redo log is made up of redo entries (also called redo
records), which record all changes made to data.
 Logical Storage Structures
 Data blocks
▪ At the finest level of granularity,Oracle Database data is stored in
data blocks. One data block corresponds to a specific number of
bytes on disk.
 Extents
▪ An extent is a specific number of logically contiguous data
blocks, obtained in a single allocation, used to store a specific type
of information.
 Segments
▪ A segment is a set of extents allocated for a user object (for
example, a table or index), undo data, or temporary data.
 Tablespaces
▪ A database is divided into logical storage units called tablespaces.
A tablespace is the logical container for a segment. Each tablespace
contains at least one data file.
PHP Oracle
 Client Processes
 to run the software code of an application program or
an Oracle tool. Most environments have separate
computers for client processes.
 Server Processes
 These processes communicate with client processes
and interact with Oracle Database to fulfill requests.
 Background Process
 Background processes asynchronously perform I/O
and monitor other Oracle Database processes to
provide increased parallelism for better performance
and reliability.
 SystemGlobal Area (SGA)
 The SGA is a group of shared memory structures that
contain data and control information for one
database instance. Examples of SGA components
include cached data blocks and shared SQL areas.
 Program Global Areas (PGA)
 A PGA is a memory region that contain data and
control information for a server or background
process.Access to the PGA is exclusive to the process.
Each server process and background process has its
own PGA.
 A database schema is a collection of logical
data structures, or schema objects.
 A database schema is owned by a database
user and has the same name as the user
name.
 Schema objects are user-created structures
that directly refer to the data in the database.
 The database supports many types of schema
objects, the most important of which are
tables and indexes.
 Command Line Interface
 SQL Developer
 Application Express
 Connecting to Oracle Database
 Executing SQL Statements
 Using PL/SQL, Stored Procedure andTriggers
 Using Oracle LOB
 DatabaseTransactions
 Use single SQL statement whenever possible
 If not possible, use PL/SQL or stored
procedure
 If not possible, use Java or other
programming language
 If still not possible, rethink why you want to
do it
 Oracle ConnectionTypes
 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.
 Multiple Unique Connections
▪ To get a totally independent connection use oci_new_connect():
▪ $c = oci_new_connect($username, $password, $dbname);
▪ 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);
▪ Persistent connections are not automatically closed at the end of a PHP script
this makes oci_pconnect() fast for frequently used web applications.
Reconnection does not require re-authentication to the database.
PHP Oracle
 Oracle Database Name Connection Identifiers
 The $dbname connection identifier is the name of
the local or remote database that you want to attach
to.
 Connection Identifiers can be one of:
 An Easy Connect string
 A Connect Descriptor string
 A Connect Name
 An Easy Connect string
 The Easy Connect string is JDBC-like.The Oracle 10g
syntax is:
▪ [//]host_name[:port][/service_name]
 Using Oracle 11g libraries, the enhanced 11g syntax
can be used:
▪ [//]host_name[:port][/service_name][:server_type][/instance_name]
$c = oci_connect('hr', 'welcome', 'localhost/XE');
$c = oci_connect(scott', ‘tiger', '127.0.0.1:1521/XE');
 A Connect Descriptor string
 The full Oracle Net connect descriptor string gives total
flexibility over the connection.
 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.
 A Connect Name
 A stored Connect Descriptor string
 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
 oci_close()
 The oci_close() function works by reference
counting. Only when all PHP references to the
database connection are finished will it actually be
closed and database resources freed.
 Demo on Close.php
 The possible steps are:
 Parse: Prepares a statement for execution.
 Bind: Optionally lets you bind data values, for
example, in theWHERE clause, for better
performance and security.
 Define: Optional step allowing you to specify which
PHP variables will hold the results.This is not
commonly used.
 Execute: The database processes the statement and
buffers any results.
 Fetch: Gets any query results back from the database.
 Modified FizzBuzz Problem, solved using single SQL
statement
 Sample code using
PL/SQL function to
generate composite
field
 Function called using
SELECT statement
 Sample code for inserting
LOB data into Oracle
database
 Sample code for etrieving
LOB data from Oracle
database
 Sample code, increase one salary and
decrease another as a single transaction.
 Oracle and Zend @Zend
 http://www.zend.com/en/company/partners/strategic/zend-oracle
 PHP Developer Center @Oracle
 http://www.oracle.com/technetwork/topics/php/whatsnew/index.html
 Oracle Database XE 11gR2
 http://www.oracle.com/technetwork/products/express-edition/downloads/index.html
Ad

More Related Content

What's hot (20)

ORDS - Oracle REST Data Services
ORDS - Oracle REST Data ServicesORDS - Oracle REST Data Services
ORDS - Oracle REST Data Services
Justin Michael Raj
 
Wizard of ORDS
Wizard of ORDSWizard of ORDS
Wizard of ORDS
Roel Hartman
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Alex Zaballa
 
What's next after Upgrade to 12c
What's next after Upgrade to 12cWhat's next after Upgrade to 12c
What's next after Upgrade to 12c
Guatemala User Group
 
Configuration beyond Java EE 8
Configuration beyond Java EE 8Configuration beyond Java EE 8
Configuration beyond Java EE 8
Anatole Tresch
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?
Performance Tuning Corporation
 
Expose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridExpose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug Madrid
Vinay Kumar
 
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
Dave Stokes
 
Configure Your Projects with Apache Tamaya
Configure Your Projects with Apache TamayaConfigure Your Projects with Apache Tamaya
Configure Your Projects with Apache Tamaya
Anatole Tresch
 
Oracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDSOracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDS
Doug Gault
 
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - TrivadisTechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
Trivadis
 
Hacking oracle using metasploit
Hacking oracle using metasploitHacking oracle using metasploit
Hacking oracle using metasploit
Alberto García Illera
 
Configuration with Apache Tamaya
Configuration with Apache TamayaConfiguration with Apache Tamaya
Configuration with Apache Tamaya
Anatole Tresch
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
Alex Zaballa
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features"
Anar Godjaev
 
Oracle Data Redaction - EOUC
Oracle Data Redaction - EOUCOracle Data Redaction - EOUC
Oracle Data Redaction - EOUC
Alex Zaballa
 
Extending MySQL Enterprise Monitor
Extending MySQL Enterprise MonitorExtending MySQL Enterprise Monitor
Extending MySQL Enterprise Monitor
Mark Leith
 
JSON and the Oracle Database
JSON and the Oracle DatabaseJSON and the Oracle Database
JSON and the Oracle Database
Maria Colgan
 
PNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultPNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing Difficult
Dave Stokes
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Alex Zaballa
 
ORDS - Oracle REST Data Services
ORDS - Oracle REST Data ServicesORDS - Oracle REST Data Services
ORDS - Oracle REST Data Services
Justin Michael Raj
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Alex Zaballa
 
Configuration beyond Java EE 8
Configuration beyond Java EE 8Configuration beyond Java EE 8
Configuration beyond Java EE 8
Anatole Tresch
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?
Performance Tuning Corporation
 
Expose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridExpose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug Madrid
Vinay Kumar
 
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
Dave Stokes
 
Configure Your Projects with Apache Tamaya
Configure Your Projects with Apache TamayaConfigure Your Projects with Apache Tamaya
Configure Your Projects with Apache Tamaya
Anatole Tresch
 
Oracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDSOracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDS
Doug Gault
 
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - TrivadisTechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
Trivadis
 
Configuration with Apache Tamaya
Configuration with Apache TamayaConfiguration with Apache Tamaya
Configuration with Apache Tamaya
Anatole Tresch
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
Alex Zaballa
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features"
Anar Godjaev
 
Oracle Data Redaction - EOUC
Oracle Data Redaction - EOUCOracle Data Redaction - EOUC
Oracle Data Redaction - EOUC
Alex Zaballa
 
Extending MySQL Enterprise Monitor
Extending MySQL Enterprise MonitorExtending MySQL Enterprise Monitor
Extending MySQL Enterprise Monitor
Mark Leith
 
JSON and the Oracle Database
JSON and the Oracle DatabaseJSON and the Oracle Database
JSON and the Oracle Database
Maria Colgan
 
PNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultPNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing Difficult
Dave Stokes
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Alex Zaballa
 

Similar to PHP Oracle (20)

ORACLE Architechture.ppt
ORACLE Architechture.pptORACLE Architechture.ppt
ORACLE Architechture.ppt
aggarwalb
 
maa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdfmaa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdf
Chandan Bose
 
The oracle database architecture
The oracle database architectureThe oracle database architecture
The oracle database architecture
Akash Pramanik
 
ora_sothea
ora_sotheaora_sothea
ora_sothea
thysothea
 
High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2
Mario Redón Luz
 
Maa goldengate-rac-2007111
Maa goldengate-rac-2007111Maa goldengate-rac-2007111
Maa goldengate-rac-2007111
pablitosax
 
Oracle & sql server comparison 2
Oracle & sql server comparison 2Oracle & sql server comparison 2
Oracle & sql server comparison 2
Mohsen B
 
An Introduction To Oracle Database
An Introduction To Oracle DatabaseAn Introduction To Oracle Database
An Introduction To Oracle Database
Meysam Javadi
 
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangaloreOracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
TIB Academy
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial
KlausePaulino
 
Database Performance Management in Cloud
Database Performance Management in CloudDatabase Performance Management in Cloud
Database Performance Management in Cloud
Dr. Amarjeet Singh
 
Oracle Intro.ppt
Oracle Intro.pptOracle Intro.ppt
Oracle Intro.ppt
DevilPurkhasiya
 
Introduction to Oracle Database
Introduction to Oracle DatabaseIntroduction to Oracle Database
Introduction to Oracle Database
puja_dhar
 
Muhammad Hameed Chaudhry
Muhammad Hameed ChaudhryMuhammad Hameed Chaudhry
Muhammad Hameed Chaudhry
Aamir Chaudhry
 
Lecture2 oracle ppt
Lecture2 oracle pptLecture2 oracle ppt
Lecture2 oracle ppt
Hitesh Kumar Markam
 
MOHAMMED VIKHAR AHMED
MOHAMMED VIKHAR AHMEDMOHAMMED VIKHAR AHMED
MOHAMMED VIKHAR AHMED
Mohammed Vaqar
 
ORACLE DBA RESUME
ORACLE DBA RESUMEORACLE DBA RESUME
ORACLE DBA RESUME
christian fotachwi
 
Introduction to oracle
Introduction to oracleIntroduction to oracle
Introduction to oracle
durgaprasad1407
 
Using oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveUsing oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archive
Secure-24
 
Oracle_DB_sobre_Oracle
Oracle_DB_sobre_OracleOracle_DB_sobre_Oracle
Oracle_DB_sobre_Oracle
Fran Navarro
 
ORACLE Architechture.ppt
ORACLE Architechture.pptORACLE Architechture.ppt
ORACLE Architechture.ppt
aggarwalb
 
maa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdfmaa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdf
Chandan Bose
 
The oracle database architecture
The oracle database architectureThe oracle database architecture
The oracle database architecture
Akash Pramanik
 
High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2
Mario Redón Luz
 
Maa goldengate-rac-2007111
Maa goldengate-rac-2007111Maa goldengate-rac-2007111
Maa goldengate-rac-2007111
pablitosax
 
Oracle & sql server comparison 2
Oracle & sql server comparison 2Oracle & sql server comparison 2
Oracle & sql server comparison 2
Mohsen B
 
An Introduction To Oracle Database
An Introduction To Oracle DatabaseAn Introduction To Oracle Database
An Introduction To Oracle Database
Meysam Javadi
 
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangaloreOracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
TIB Academy
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial
KlausePaulino
 
Database Performance Management in Cloud
Database Performance Management in CloudDatabase Performance Management in Cloud
Database Performance Management in Cloud
Dr. Amarjeet Singh
 
Introduction to Oracle Database
Introduction to Oracle DatabaseIntroduction to Oracle Database
Introduction to Oracle Database
puja_dhar
 
Muhammad Hameed Chaudhry
Muhammad Hameed ChaudhryMuhammad Hameed Chaudhry
Muhammad Hameed Chaudhry
Aamir Chaudhry
 
Using oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveUsing oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archive
Secure-24
 
Oracle_DB_sobre_Oracle
Oracle_DB_sobre_OracleOracle_DB_sobre_Oracle
Oracle_DB_sobre_Oracle
Fran Navarro
 
Ad

More from Nur Hidayat (9)

Develop a Software, Where to Start?
Develop a Software, Where to Start?Develop a Software, Where to Start?
Develop a Software, Where to Start?
Nur Hidayat
 
Do It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database WorldsDo It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database Worlds
Nur Hidayat
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good Database
Nur Hidayat
 
How to Design a Good Database for Your Application
How to Design a Good Database for Your ApplicationHow to Design a Good Database for Your Application
How to Design a Good Database for Your Application
Nur Hidayat
 
PostgreSQL Advanced Queries
PostgreSQL Advanced QueriesPostgreSQL Advanced Queries
PostgreSQL Advanced Queries
Nur Hidayat
 
Seminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGapSeminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGap
Nur Hidayat
 
Do IT with SQL
Do IT with SQLDo IT with SQL
Do IT with SQL
Nur Hidayat
 
How to Become Great Programmer
How to Become Great ProgrammerHow to Become Great Programmer
How to Become Great Programmer
Nur Hidayat
 
MRI Presentation
MRI PresentationMRI Presentation
MRI Presentation
Nur Hidayat
 
Develop a Software, Where to Start?
Develop a Software, Where to Start?Develop a Software, Where to Start?
Develop a Software, Where to Start?
Nur Hidayat
 
Do It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database WorldsDo It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database Worlds
Nur Hidayat
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good Database
Nur Hidayat
 
How to Design a Good Database for Your Application
How to Design a Good Database for Your ApplicationHow to Design a Good Database for Your Application
How to Design a Good Database for Your Application
Nur Hidayat
 
PostgreSQL Advanced Queries
PostgreSQL Advanced QueriesPostgreSQL Advanced Queries
PostgreSQL Advanced Queries
Nur Hidayat
 
Seminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGapSeminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGap
Nur Hidayat
 
How to Become Great Programmer
How to Become Great ProgrammerHow to Become Great Programmer
How to Become Great Programmer
Nur Hidayat
 
MRI Presentation
MRI PresentationMRI Presentation
MRI Presentation
Nur Hidayat
 
Ad

Recently uploaded (20)

AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
Leading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael JidaelLeading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael Jidael
Michael Jidael
 
Automation Dreamin': Capture User Feedback From Anywhere
Automation Dreamin': Capture User Feedback From AnywhereAutomation Dreamin': Capture User Feedback From Anywhere
Automation Dreamin': Capture User Feedback From Anywhere
Lynda Kane
 
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5..."Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
Fwdays
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
Leading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael JidaelLeading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael Jidael
Michael Jidael
 
Automation Dreamin': Capture User Feedback From Anywhere
Automation Dreamin': Capture User Feedback From AnywhereAutomation Dreamin': Capture User Feedback From Anywhere
Automation Dreamin': Capture User Feedback From Anywhere
Lynda Kane
 
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5..."Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
Fwdays
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 

PHP Oracle

  • 1. PHP Indonesia Saturday, 5th May 2102 Presented by: Nur Hidayat
  • 2.  Sehari-hari sebagai Software Developer di ESQ LeadershipCenter  Di waktu luang mencoba mencari segenggam berlian untuk istri dan anak-anak
  • 3.  Introduction to Oracle  PHP Oracle Extensions  InstalasiOracle Database XE  Zend ServerVirtualBox Appliance  Oracle DatabaseAdministration  Interacting with Oracle Database XE  Programming PHP+Oracle
  • 4.  1977,Larry Ellison founded Software Development Laboratories (SDL)  Changed name in 1979 to Relational Software Inc. (RSI),  1979 created the first commercial SQL-based relational database.  Changed name in 1983 to Oracle Corporation.  1983,Oracle 3 the first relational database to run on mainframes, minicomputers, and PCs  1988, PL/SQL, the first built-in procedural language with very high influence from C andAda.  1992,Oracle7, released in 1992, introduced PL/SQL stored procedures and triggers.  1995, the first to 64-bit database.  1999, the database with XML support  2001,Oracle Real ApplicationClusters (Oracle RAC)  2003, enterprise grid computing environment.  In late 2005, released its first full-featured, 100 percent free database server, Oracle Database XE.  2007,Oracle 11g, improved Manageability, diagnosability, and availability See Also: http://www.oracle.com/technetwork/issue-archive/2007/07-jul/ o4730- 090772.html for an article summarizing the evolution of Oracle Database
  • 5.  Express Edition  Includes all feature available in Enterprise Edition  Limited to single CPU  Limited to 1 GB or RAM  Limited to 4 GB (10g) or 11 GB (11g) of data  Very simple installation  Personal Edition  Includes all feature available in Enterprise Edition  Limited to 1 user
  • 6.  Standard Edition One  Limited to 2 CPU  Minus Oracle RAC  Standard Edition  Limited to 4 CPU  Support Oracle RAC  Enterprise Edition  No CPU Limitation  Advanced High Availability (FlashbackTable, Flashback Database, Data Guard, etc.)
  • 7.  TimesTen, in memory database  Berkeley DB, embedded database  MySQL, leading free open source database  Application Server, web server which integrate seamlessly with oracle database  E-Business Suite  PeopleSoft  JD Edwards  .... and many more
  • 8.  Oracle Extension,This extension was designed for Oracle 7 and should be avoided since it uses a deprecated version of the Oracle API that will not be available in future releases.  ODBC within Windows, while ODBC provides some connection pooling and other built-in features, it lacks access to many of Oracle’s capabilities such as the ability to store large objects (LOBs).  OCI8 Extension, this extension supports most of Oracle’s Oracle Call Interface (OCI).  PDO Extension.This portable databaseAPI makes it easy to change your database without changing a lot of your code.  Database Abstraction Libraries  ADOdb  PEAR DB  PEAR MDB2
  • 9.  PilihanWeb Server  XAMPP  Zend Server  InstalasiOracle XE diWindows
  • 10.  Import ZendAppliance toVirtualBox  Username: root  Password: zend1234  Konfigurasi Zend Server  http://localhost:10081/  KonfigurasiOracle Database XE  /etc/init.d/oracle-xe configure
  • 11.  Starting and Stopping Oracle Database  Database and Instance  Oracle Storage Structure  Oracle Memory Structure  Schemas and Users
  • 12.  Listener  The database listener is an Oracle Net program that listens for and responds to requests to the database.  Database  The database is another process that runs in memory, and needs to be started beforeOracle Net can handle connection requests to it.  Requirements, user must included in  dba group on Linux, or  ORA_DBA on Windows
  • 13.  On Linux  Starting ▪ From Gnome: Select Applications > Oracle Database 10g Express Edition > Start Database. ▪ From KDE: Select K Menu > Oracle Database 10g Express Edition > Start Database. ▪ From linux shell: # /etc/init.d/oracle-xe restart  Stopping ▪ From Gnome: Select Applications > Oracle Database 10g Express Edition > Stop Database. ▪ From KDE: Select K Menu > Oracle Database 10g Express Edition > Stop Database. ▪ From linux shell: # /etc/init.d/oracle-xe stop
  • 14.  OnWindows  Starting ▪ From Menu: Start > Oracle Database 10g Express Edition > Start Database. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the Listener service, and select Start. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE service. Right click on the Listener service, and select Start.  Stopping ▪ From Menu: Start > Oracle Database 10g Express Edition > Stop Database. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the Listener service, and select Stop. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE service. Right click on the Listener service, and select Stop.
  • 15.  An Oracle database server consists of a database and at least one database instance  Database  A database is a set of files, located on disk, that store data.These files can exist independently of a database instance.  Database instance  An instance is a set of memory structures that manage database files.The instance consists of a shared memory area, called the system global area (SGA), and a set of background processes.An instance can exist independently of database files.
  • 18.  Physical Storage Structures  Data files ▪ Every Oracle database has one or more physical data files, which contain all the database data.  Control files ▪ Every Oracle database has a control file. Metadata specifying the physical structure of the database.  Online redo log files ▪ Every Oracle Database has an online redo log. An online redo log is made up of redo entries (also called redo records), which record all changes made to data.
  • 19.  Logical Storage Structures  Data blocks ▪ At the finest level of granularity,Oracle Database data is stored in data blocks. One data block corresponds to a specific number of bytes on disk.  Extents ▪ An extent is a specific number of logically contiguous data blocks, obtained in a single allocation, used to store a specific type of information.  Segments ▪ A segment is a set of extents allocated for a user object (for example, a table or index), undo data, or temporary data.  Tablespaces ▪ A database is divided into logical storage units called tablespaces. A tablespace is the logical container for a segment. Each tablespace contains at least one data file.
  • 21.  Client Processes  to run the software code of an application program or an Oracle tool. Most environments have separate computers for client processes.  Server Processes  These processes communicate with client processes and interact with Oracle Database to fulfill requests.  Background Process  Background processes asynchronously perform I/O and monitor other Oracle Database processes to provide increased parallelism for better performance and reliability.
  • 22.  SystemGlobal Area (SGA)  The SGA is a group of shared memory structures that contain data and control information for one database instance. Examples of SGA components include cached data blocks and shared SQL areas.  Program Global Areas (PGA)  A PGA is a memory region that contain data and control information for a server or background process.Access to the PGA is exclusive to the process. Each server process and background process has its own PGA.
  • 23.  A database schema is a collection of logical data structures, or schema objects.  A database schema is owned by a database user and has the same name as the user name.  Schema objects are user-created structures that directly refer to the data in the database.  The database supports many types of schema objects, the most important of which are tables and indexes.
  • 24.  Command Line Interface  SQL Developer  Application Express
  • 25.  Connecting to Oracle Database  Executing SQL Statements  Using PL/SQL, Stored Procedure andTriggers  Using Oracle LOB  DatabaseTransactions
  • 26.  Use single SQL statement whenever possible  If not possible, use PL/SQL or stored procedure  If not possible, use Java or other programming language  If still not possible, rethink why you want to do it
  • 27.  Oracle ConnectionTypes  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.  Multiple Unique Connections ▪ To get a totally independent connection use oci_new_connect(): ▪ $c = oci_new_connect($username, $password, $dbname); ▪ 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); ▪ Persistent connections are not automatically closed at the end of a PHP script this makes oci_pconnect() fast for frequently used web applications. Reconnection does not require re-authentication to the database.
  • 29.  Oracle Database Name Connection Identifiers  The $dbname connection identifier is the name of the local or remote database that you want to attach to.  Connection Identifiers can be one of:  An Easy Connect string  A Connect Descriptor string  A Connect Name
  • 30.  An Easy Connect string  The Easy Connect string is JDBC-like.The Oracle 10g syntax is: ▪ [//]host_name[:port][/service_name]  Using Oracle 11g libraries, the enhanced 11g syntax can be used: ▪ [//]host_name[:port][/service_name][:server_type][/instance_name] $c = oci_connect('hr', 'welcome', 'localhost/XE'); $c = oci_connect(scott', ‘tiger', '127.0.0.1:1521/XE');
  • 31.  A Connect Descriptor string  The full Oracle Net connect descriptor string gives total flexibility over the connection.  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.
  • 32.  A Connect Name  A stored Connect Descriptor string  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
  • 33.  oci_close()  The oci_close() function works by reference counting. Only when all PHP references to the database connection are finished will it actually be closed and database resources freed.  Demo on Close.php
  • 34.  The possible steps are:  Parse: Prepares a statement for execution.  Bind: Optionally lets you bind data values, for example, in theWHERE clause, for better performance and security.  Define: Optional step allowing you to specify which PHP variables will hold the results.This is not commonly used.  Execute: The database processes the statement and buffers any results.  Fetch: Gets any query results back from the database.
  • 35.  Modified FizzBuzz Problem, solved using single SQL statement
  • 36.  Sample code using PL/SQL function to generate composite field  Function called using SELECT statement
  • 37.  Sample code for inserting LOB data into Oracle database  Sample code for etrieving LOB data from Oracle database
  • 38.  Sample code, increase one salary and decrease another as a single transaction.
  • 39.  Oracle and Zend @Zend  http://www.zend.com/en/company/partners/strategic/zend-oracle  PHP Developer Center @Oracle  http://www.oracle.com/technetwork/topics/php/whatsnew/index.html  Oracle Database XE 11gR2  http://www.oracle.com/technetwork/products/express-edition/downloads/index.html