


How to connect to oracle database and query data in php, oracle database_PHP tutorial
How to connect oracle database with php and query data, oracle database
The example in this article describes how to connect PHP to the Oracle database and query data. Share it with everyone for your reference. The specific analysis is as follows:
php has powerful functions. Not only can it support mysql, mssql, mysqli, we can also connect with oracle data. It is very simple to make php support oracle. We only need to put the semicolon in php.ini; extension = php_oci8.dll Just remove it.
php supports oracle connection function
Remove the configuration in the php.ini file; extension = php_oci8.dll, remove the semicolon in front, and restart apache. If it doesn’t work, we will copy the php_oci8.dll in the php directory to system32 of the windows system. Go down below.
Establish a link to the oracle database, the code is as follows:
1.
2.
3.Oracle connection method:
adocon.open"Driver={microsoft odbc for oracle};server=oraclesever.world;uid=admin;pwd=pass;"
4.Oracle OLE DB connection method:
adocon.open"Provider=OraOLEDB.Oracle;data source=dbname;user id=admin;password=pass;"
Sometimes the first method does not work, so use the second method. The parameters are user name, password, oracle service address, where test is the service name, and the code is as follows:
$ora_test = oci_parse($conn,$sql); //Compile sql statement
oci_execute($ora_test,OCI_DEFAULT); //Execute
while($r=oci_fetch_row($ora_test)) //Retrieve the results
{
echo $ora_test[0];
echo "
";
}
See a complete example, if PHP version >5.0, then use the following function:
Example, the code is as follows:
if (!$conn) {
$e = oci_error();
print htmlentities($e['message']);
exit;
}
$query = 'SELECT * FROM DEPARTMENTS'; // Query statement
$stid = oci_parse($conn, $query); // Configure SQL statements and prepare for execution
if (!$stid) {
$e = oci_error($conn);
print htmlentities($e['message']);
exit;
}
$r = oci_execute($stid, OCI_DEFAULT); // Execute SQL. OCI_DEFAULT means do not commit automatically
if(!$r) {
$e = oci_error($stid);
echo htmlentities($e['message']);
exit;
}
//Print execution results
print '
'.($item?htmlentities($item):' ').' | ';
oci_close($conn);
?>
I hope this article will be helpful to everyone’s PHP programming design.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
