Table of Contents
ERROR - Could not connect to Oracle
ERROR - Could not parse SQL statement.
Error - no rows returned !
Home Backend Development PHP Tutorial PHP+Oracle(OCI) preliminary_PHP tutorial

PHP+Oracle(OCI) preliminary_PHP tutorial

Jul 15, 2016 pm 01:23 PM
oracle php exist start user choose

Start with Oracle (OCI)

With more and more PHP users choosing Oracle as their database, how to access the Oracle interface in the PHP release environment has become more and more important. . We'll start our journey with a quick look at a simple, basic and more explicit Oracle scenario. Oralce and Oralce8 use PHP's OCI8 function library. There is a brief description in the PHP manual (http://www.php.net/manual/ref.oci8.php): These functions allow you to access Oracle and Oracle7d databases. They use the Oracle8 Call-Interface (OCI8) . You will need Oracle8's client libraries to use these extensions.

These extension functions are more flexible than standard Oracle extension functions. It supports PHP global and local variables and integration with Oracle. It has complete LOB, FILE and ROWID support and allows you to define users. Supplementary variables.

From here on I will use "Oracle" to refer to any Oracle version, this article assumes you have PHP and Oracle installed and running. Oracle's help can be found at http://www.oracle.com or http://technet.oracle.com.

The point of this article is
1. Connect to ORALCLE
2. Build and run the SQL statement
3. Display the results
4. The limit/offset is close to the "mark page number" ” results

as an additional feature. You can take a look at how to accomplish a query that displays limits/offsets derived from a very large data set.

/*We will show a solution from a basic usage. The file used in this example is the new version of the article written by Rod Kreisler (http://www.phpbuilder.com/columns/rod20000221.php3). The new version of the file can be found at http://php.socket7.net. Set $offset to 0 if it is set to 0 or empty.
*/
if (empty($offset) || $offset $offset=0;
}

/*We will start from a basic use Show a plan. The file used in this example is the new version of the article written by Rod Kreisler (http://www.phpbuilder.com/columns/rod20000221.php3). The new version of the file can be found at http://php.socket7.net. Set $offset to 0 if it is set to 0 or empty.
*/
if (empty($offset) || $offset $offset=0;
}

$limit = 3;
/ *
Connect to Oralce. If you want, you can use ORACLE_SID directly when connecting to the database. Using PHP as CGI uses discontinuous connections. Now let's use this discontinuous connection in this example. In Windows this can be set in the registry, while in Unix you can use the putenv() function putenv("ORALCE_SID=ORASID");
Or, if you prefer, you can refer to it directly when connecting to the database. ORACLE_SID, let us refer directly to ORACLE_SID in this example.
If you use PHP as a module of APACHE, you can use persistent connections. While using non-persistent connections when using PHP as CGI, we use non-persistent connections in this example.
*/

$conn = OCILogon("user_name", "password", "ORASID");

/*
Error message. If no database is connected, an error message will be displayed and the execution of the script will exit.
*/

if (!$conn) {
echo "

ERROR - Could not connect to Oracle

";
exit;
}

/*
If the connection is successful, $conn is a connector. Otherwise, the script will end and output the "Could not connect to Oracle" error message
Now start analyzing and creating your SQL statements to get countable records from unlimited query results.
The format statement "Select count(*) from table_name" here is equivalent to count(), which is a SQL function that will be executed in the database. Better than returning results calculated by relying on PHP.
*/

$sql = "Select count(*) from table_name";

$stmt = OCIParse($conn, $sql);
if(!$stmt ) {
echo "

ERROR - Could not parse SQL statement.

";
exit;
}

/*
If you enter a wrong SQL statement or another error occurs, you will see the error message "Cannot parse SQL", $stmt is now a definition statement.
Now execute your analysis statement
*/

OCIExecute($stmt);

/*
The statement has now been executed, but as you can see Yes, no result identifier is returned from OCIExecute(), and the result returned by OCIParse() contains all the information required by Oracle.
Now start selecting the results of this query, $total rows[0] will contain a number. If no rows are returned, an error is displayed and the script exits.
*/

OCIFetchInto($stmt, &$total_rows);

if ( !$total_rows[0] ) {
echo "

Error - no rows returned !

";
exit;
}

/*
This code is optional but will make the returned results clearer, showing a message similar to "A total of 15 records, the 4th to 15th results are now displayed. "'s comments
*/

.

$begin =($offset+1);
$end = ($begin+($limit-1));
if ($end > $total_rows[0]) {
$end = $total_rows[0];
}

echo "There are $total_rows[0] results.
n";
echo "Now showing results $begin to $end.
n";

/*
Now it’s time to get down to business, release the original statement identifier and create the SQL statement. Analyze and execute SQL statements.
Be careful when writing code: unlike MYSQL, Oracle does not support restriction statements in SQL statements. As such, there are many ways to select specific rows, the best being to place the selection results in a temporary table or to "buffer" all results. Such methods are beyond the scope of this tutorial. We will use a simpler approach, explained further below.
*/
OCIFreeStatement($stmt);

$sql = "Select * from table_name";

$stmt = OCIParse($conn, $sql);

if(!$stmt) {
echo "

ERROR - Could not parse SQL statement.

";
exit;
}

OCIExecute($ stmt);

/*
Now display the result. The simplest way is to use this loop in the result collection. HTML will be used to display the final result, but this example is very simple, so we won't use any of it.
Note when writing code: As specified above, there is no limit in Oracle, so we must do this loop by taking out the results we want in all result sets and terminating the results we already have.
In this section, we will have a few different approaches, and there should actually be a better way to write this code. But while I think my approach is a bit unreadable, it does work.
*/

$i=0;
$j=0;
while( OCIFetchInto($stmt, &$result_array) ) {
if ($i>=$ offset) {
if ($j for ($k=0; $kecho $result_array[$k]. " ";
}
echo "
";
$j++;
}
}
$i++;
}
echo "
" ;

/*
The results will be displayed on the current page, now it is time to give the visitor a way to click to other pages using NEXT/PREV
*/

/ / Calculate the number of pages required for the result,
$pages = intval($total_rows[0]/$limit);

// $pages is now the total number of pages required excluding the remaining parts
if ($total_rows[0]%$limit) {
// has remainder so add one page
$pages++;
}

//The first one is displayed PREV connection is not displayed when page
if ($offset!=0) {
$prevoffset=$offset-$limit;
echo "

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446859.htmlTechArticleStarting from Oracle (OCI) With more and more PHP users choosing Oracle as their database, How to access the Oracle interface in the PHP release environment has become more and more important. We will start from...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

See all articles