search
HomeBackend DevelopmentPHP TutorialPEARMDB Database Abstraction Layer - Write Once - Run Anywhere_PHP Tutorial

Write once - run anywhere This is a marketing slogan for Java, but it is also one of the key features of PHP. Many business models rely on operating system independence to ensure that products can be sold to a broad customer base. So why tie yourself to a certain database vendor? The database abstraction layer enables you to develop your applications independently of the database. However, often they impact performance more than you would like, or they are not abstract enough to eliminate all database-specific code. What will this article teach me? This article will give a good introduction to the database abstraction package PEAR MDB. The focus of the article will be on more advanced features of MDBs beyond those offered by similar packages, such as data type abstraction and XML-based schema management. Basic understanding of PHP and SQL recommended. Why do we need another database class? Typically, web projects are added to an existing IT infrastructure after the customer has determined which RDBMS (relational database management system) they want to use. Even that's not the case because different budgets may affect what data you choose to deploy. Ultimately, you as a developer may simply prefer not to tie yourself to any one vendor. From now on, it means keeping versions of each supported data or sacrificing more performance but gaining more usability than necessary: ​​Enter PEAR MDB. MDB is a database abstraction layer focused on making writing RDBMS-agnostic PHP programs a simple process. Most other so-called database abstraction layers for PHP provide a common API for all supported databases and very limited abstractions (mostly just for sequences). MDB on the other hand can be used to abstract all data sent and received by the database. Even the database schema can be defined in an RDBMS-independent format. But it provides these features while still maintaining high performance and simplicity of use. This was achieved by taking a deep look at two popular database abstraction layers, PEAR DB and Metabase, and then merging them. And during the integration process, we took this opportunity to clean up their integrated APIs and any designs that affected performance. How did MDB come about? Back in the fall of 2001, I was looking for a database abstraction package that might make my company's programming framework RDBMS independent. The goal is to reduce the amount of database-specific code to zero. The only package I've found that provides such functionality is Metabase. But some parts of Metabase have an uncomfortable API for compatibility with PHP3. Nonetheless, we decided that Metabase was our only option. But even after adding a performance improvement patch to Metabase, we still felt we were giving up too much performance. We met the authors of Metabase at the PHP International Conference in 2001, and we talked about the benefits of having something like Metabase be part of the PEAR project. Shortly afterwards, another discussion started on the PEAR mailing list about the possible benefits of converging PEAR DB and Metabase. After many discussions in our company, we decided to take on this task. After months of hard work, we now have the first stable release of MDB. What does MDB offer you? MDB combines most of the features of PEAR DB and Metabase. In fact, the only feature of PEAR DB that no longer exists is returning an object as a result set. We dropped this feature because it is not commonly used and the performance penalty is very obvious. A lot of development time is spent making the API as useful as possible. Ultimately, MDB provides these features very highly and is at least as fast as PEAR DB and significantly faster than Metabase. List of these most important features: OO style API Prepared query simulation Full data type abstraction for all data passed in and out of the database (including LOB support) Transaction support database/table/index/sequence creation/ Abandon/change RDBMS-independent database schema management inherited into the PEAR framework (PEAR installer, PEAR error handling, etc.) So how to use it? MDB provides some very advanced abstraction features. It's important to remember that these features are optional only. But it is very important to use them when writing RDBMS-independent PHP programs. An example showing how simple it is to use MDB is in the "Links and Documentation" section at the end of the article. As mentioned earlier, the focus of this article is to introduce the features that make MDB different from other PHP database abstraction layers. You can find the code for all of these example scripts on the CD packaged with this article. But first we need to install MDB. This is actually very easy using the PEAR installer. I can't fully cover the PEAR installer in this article but I hear the next issue will discuss the ins and outs of the PEAR framework in great detail. Work is underway to get the installer to run on Windows but support is still a bit quirky.For *nix systems you will need the CGI version of PHP installed on your system and simply run the following command: lynx -source go-pear.org|php After the installation is complete you only need to enter one more line of command and you are all set . pear install MDB If the previous procedure doesn't work for you, there is always the option of getting the package directly from the PEAR MDB home page. The URL is listed at the end of the article. Leveraging Data Type Abstraction Because most databases tend to have some personality or quirks, it's important for MDBs to hide these differences from developers. MDB achieves this by defining its own internal data types: text, boolean, integer, decimal, float, date, time, time stamp, large objects (files). All data passed to and obtained from the database can be converted to and from the MDB's internal format. The example scripts related to this section can be found in the datatype directory. Let's look at the following query: $session = 098f6bcd4621d373cade4e832627b4f6; // set time out to 30 minutes $timeout = time()+60*30; // SELECT query showing how the datatype conversion works $query = SELECT createtime, user_id FROM sessions; $query .= WHERE session = .$session; $query .= AND lastaccess getTextValue($session); $query .= AND lastaccess getTimestampValue($timeout); To demonstrate, let’s Suppose I only want to get the first row. MDB::queryRow() gets the first row, it frees the result set and returns its contents, so it's exactly what we want. $result = $mdb->queryRow($query); But different RDBMS use different formats to return data like dates. Therefore, if we then want to perform calculations on some data, it is important to return the data in the same format regardless of the RDBMS chosen. This can be done semi-automatically by the MDB. All you need to do is tell what type your result column will be and MDB will handle the conversion. The easiest way is to pass such information to the query function. $types = array(timestamp, integer); $result = $mdb->queryRow($query, $types); This tells MDB that the first column of the result set is of type timestamp and the second column is of integer. All query functions can accept such metainformation as optional parameters. Data can also be set afterwards using MDB::setResultTypes(). Depending on the database the data was fetched from, it will then be transformed accordingly to return the data. The data format of timestamps inside MDB follows the ISO 8601 standard. Other packages like PEAR::Date can handle this format. MDB also provides some data format conversion functions in the MDB_Date class, which can be optionally included. Because quite a few RDBMSs return integer data in the same way, there is no need to convert the integer data. Therefore, to get a slight performance improvement you can do this: $types = array(timestamp); $result = $mdb->queryRow($query, $types); This way only the first column of the result set will be converted. Of course, this can become a problem if the MDB is used to return integers from different databases. However, the slight performance improvement may not be worth the risk. But once again, it shows that the use of these features is only optional. Listing 1 shows an example of using prepared queries. This can be quite convenient if you have to run a large number of queries where the only difference is that the data is passed to the database, but the structure of the query is still the same. Advanced databases can store parsed queries in memory to speed up performance. Listing 1 $alldata = array( array(1, one, un), array(2, two, deux), array(3, three, trois), array(4, four, quatre) ); $p_query = $mdb- >prepareQuery(INSERT INTO numbers VALUES (?,?,?)); $param_types = array(integer, text, text); foreach ($alldata as $row) { $mdb->execute($p_query, NULL, $row , $param_types); } All four arrays stored in $alldata will be used in the execute statement. The data will automatically be converted into the correct format. Because this is an insert statement, the second parameter of MDB::execute() is set to NULL because we won't have any result columns for which we need to set the data type. Among the supported data types are LOBs (Large Objects), which allow us to store files in the database. Binary files are stored in BLOBs (Binary Large Objects) and regular text files are stored in CLOBs (Character Large Objects). In an MDB you can only store LOBs using prepared INSERT and UPDATE queries.You can set the value of a LOB field in a prepared query using MDBA::setParamBlob() or MDB::setParamClob(). Both functions expect to be passed a LOB object, which can be created using MDB::createLob(). $binary_lob = array( Type => inputfile, FileName => ./myfile.gif ); $blob = $mdb->createLob($binary_lob); $character_lob = array( Type => data, Data => this would be a very long string container the CLOB data ); $clob = $mdb->createLob($character_lob); As you can see, MDB::createLob() is passed a relational array. The value of the Type key may be one of the following: data, inputfile, or outputfile. The first two are used when you want to write LOBs to the database. If you have a LOB stored in a variable, you should read the LOB directly from the file when you need to use inputfile. Finally, outpufile should be used when you want to read LOBs from the database. Depends on whether you use data or inp

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531976.htmlTechArticleWrite once - run anywhere This is a marketing slogan for Java, but it is also PHP one of the key features. Many business models rely on operating system independence...
Statement
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
深入理解MySQL索引优化器工作原理深入理解MySQL索引优化器工作原理Nov 09, 2022 pm 02:05 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于索引优化器工作原理的相关内容,其中包括了MySQL Server的组成,MySQL优化器选择索引额原理以及SQL成本分析,最后通过 select 查询总结整个查询过程,下面一起来看一下,希望对大家有帮助。

sybase是什么数据库sybase是什么数据库Sep 22, 2021 am 11:39 AM

sybase是基于客户/服务器体系结构的数据库,是一个开放的、高性能的、可编程的数据库,可使用事件驱动的触发器、多线索化等来提高性能。

visual foxpro数据库文件是什么visual foxpro数据库文件是什么Jul 23, 2021 pm 04:53 PM

visual foxpro数据库文件是管理数据库对象的系统文件。在VFP中,用户数据是存放在“.DBF”表文件中;VFP的数据库文件(“.DBC”)中不存放用户数据,它只起将属于某一数据库的 数据库表与视图、连接、存储过程等关联起来的作用。

数据库系统的构成包括哪些数据库系统的构成包括哪些Jul 15, 2022 am 11:58 AM

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

microsoft sql server是什么软件microsoft sql server是什么软件Feb 28, 2023 pm 03:00 PM

microsoft sql server是Microsoft公司推出的关系型数据库管理系统,是一个全面的数据库平台,使用集成的商业智能(BI)工具提供了企业级的数据管理,具有使用方便可伸缩性好与相关软件集成程度高等优点。SQL Server数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能,使用户可以构建和管理用于业务的高可用和高性能的数据应用程序。

go语言可以写数据库么go语言可以写数据库么Jan 06, 2023 am 10:35 AM

go语言可以写数据库。Go语言和其他语言不同的地方是,Go官方没有提供数据库驱动,而是编写了开发数据库驱动的标准接口,开发者可以根据定义的接口来开发相应的数据库驱动;这样做的好处在于,只要是按照标准接口开发的代码,以后迁移数据库时,不需要做任何修改,极大方便了后期的架构调整。

数据库的什么是指数据的正确性和相容性数据库的什么是指数据的正确性和相容性Jul 04, 2022 pm 04:59 PM

数据库的“完整性”是指数据的正确性和相容性。完整性是指数据库中数据在逻辑上的一致性、正确性、有效性和相容性。完整性对于数据库系统的重要性:1、数据库完整性约束能够防止合法用户使用数据库时向数据库中添加不合语义的数据;2、合理的数据库完整性设计,能够同时兼顾数据库的完整性和系统的效能;3、完善的数据库完整性有助于尽早发现应用软件的错误。

mysql查询慢的因素除了索引,还有什么?mysql查询慢的因素除了索引,还有什么?Jul 19, 2022 pm 08:22 PM

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment