Home php教程 php手册 最好用的PHP数据库操作类-ezSQL

最好用的PHP数据库操作类-ezSQL

Jun 13, 2016 am 11:32 AM
php operate database yes most use kind

 ezSQL是一个非常好用的PHP数据库操作类。著名的开源博客WordPress的数据库操作就使用了ezSQL的MySQL部分。该数据库操作类支持几乎所有主流的数据库,如:PHP-PDO, mySQL, Oracle, InterBase/FireBird, PostgreSQL, SQLite以及MS-SQL等。ezSQL具有很强的调试功能,可以快速地查看SQL代码的执行情况。使用ezSQL,可以为我们节省开发时间、简化代码并提高运行效率。

ezSQL的优点就不用多说了,它小巧、快速、简单、易用、并且开源。还有就是安全,你没想到的细节它都为你考虑了。你只需要在你的脚本开头包含相关的PHP文件,然后你就可以使用更好用的一套ezSQL函数来代替标准的PHP数据库操作函数。

下面是ezSQL中一些主要的函数:

$db->get_results -- 从数据库中读取数据集。

$db->get_row -- 从数据库中读取一行数据。

$db->get_col -- 从数据库中读取一列指定的数据集。

$db->get_var -- 从数据库的数据集中读取一个值。

$db->query -- 执行一条SQL语句。

$db->debug -- 打印最后执行的SQL语句及其返回的结果。

$db->vardump -- 打印变量的结构及其内容。

$db->select -- 选择一个新数据库。

$db->get_col_info -- 获取列的信息。

$db->hide_errors -- 隐藏错误。

$db->show_errors -- 显示错误。

ezSQL的使用方法很简单,首先下载ezSQL源代码,然后将ez_sql_core.php文件和ez_sql_mysql.php文件(这里以mySQL为例)放到与你的脚本文件相同的目录下,然后将下面的代码添加到你的脚本文件的最前面,这样就可以正常使用ezSQL了。

<?php <br />// 包含ezSQL的核心文件<br>include_once "ez_sql_core.php";<br><br>// 包含ezSQL具体的数据库文件,这里以mySQL为例<br>include_once "ez_sql_mysql.php";<br><br>// 初始化数据库对象并建立数据库连接<br>$db = new ezSQL_mysql('db_user','db_password','db_name','db_host');<br>?>
Copy after login

下面是ezSQL中一些主要函数的应用实例,这些代码均来自于ezSQL的官方帮助文档。

实例一:

// Select multiple records from the database and print them out..<br>$users = $db->get_results("SELECT name, email FROM users");<br>foreach ( $users as $user ) {<br>            // Access data using object syntax<br>            echo $user->name;<br>            echo $user->email;<br>}
Copy after login

实例二:

// Get one row from the database and print it out..<br>$user = $db->get_row("SELECT name,email FROM users WHERE id = 2");<br>echo $user->name;<br>echo $user->email;
Copy after login

实例三:

// Get one variable from the database and print it out..<br>$var = $db->get_var("SELECT count(*) FROM users");<br>echo $var;
Copy after login

实例四:

// Insert into the database<br>$db->query("INSERT INTO users (id, name, email) VALUES (NULL,'justin','jv@foo.com')");
Copy after login

实例五:

// Update the database<br>$db->query("UPDATE users SET name = 'Justin' WHERE id = 2)");
Copy after login

实例六:

// Display last query and all associated results<br>$db->debug();
Copy after login

实例七:

// Display the structure and contents of any result(s) .. or any variable<br>$results = $db->get_results("SELECT name, email FROM users");<br>$db->vardump($results);
Copy after login

实例八:

// Get 'one column' (based on column index) and print it out..<br>$names = $db->get_col("SELECT name,email FROM users",0)<br>foreach ( $names as $name ) {<br>    echo $name;<br>}
Copy after login

实例九:

// Same as above ‘but quicker’<br>foreach ( $db->get_col("SELECT name,email FROM users",0) as $name ) {<br>    echo $name;<br>}
Copy after login

实例十:

// Map out the full schema of any given database and print it out..<br>$db->select("my_database");<br>foreach ( $db->get_col("SHOW TABLES",0) as $table_name ) {<br>    $db->debug();<br>    $db->get_results("DESC $table_name");<br>}<br>$db->debug();
Copy after login
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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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 Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

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 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.

See all articles