Adodb的十个实例(清晰版)


Posted in PHP onDecember 31, 2006

本想学pear的,可是网上看到的几篇帖子对adodb的评价相当高,所以改学了这个。 
ADODB的优点有这几个(网上说的,不是我说的): 
1、速度比pear快一倍; 
2、支持的数据库类型比pear多很多,甚至可以支持ACCESS; 
3、无须安装,无须服务器支持(对新手来说,这点很重要吧) 
不知道adodb是什么或是想下载adodb的朋友可以去这个链接看看:http://www.phpe.net/class/106.shtml  
另外,如果哪位兄弟翻译了README的全文或知道哪里有译文请给我回个帖,谢谢。 
Tutorial  
Example 1: Select Statement  
任务: 连接一个名为Northwind的Access数据库, 显示 每条记录 的前两个字段.  

在这个实例里, 我们新建了一个ADOC连接(ADOConnection)对象, 并用它来连接一个数据库. 这个连接采用PConnect 方法, 这是一个持久 连接. 当我们要查询数据 库时, 我们可以随时调 用这个连接的Execute()函数. 它会返回一个ADORecordSet对象 which is actually a cursor that holds the current row in the array fields[]. 我们使用MoveNext()从一个记录转向下一个记录 .  

NB: 有一 个非常实用的函数 SelectLimit在本例中没有用到, 它可以控制显示的记录数(如只显示前十条记录 ,可用作分页显示 ).  

PHP:-------------------------------------------------------------------------------- 

<?  
include('adodb.inc.php'); #载入ADOdb  
$conn = &ADONewConnection('access'); # 新建一个连接  
$conn->PConnect('northwind'); # 连接到一个名为northwind的MS-Access数据库  
$recordSet = &$conn->Execute('select * from products'); #从products数据表中搜索所有数据  
if (!$recordSet)  
print $conn->ErrorMsg(); //如果数据搜索发生错误显示错误信息  
else  
while (!$recordSet->EOF) {  
print $recordSet->fields[0].' '.$recordSet->fields[1].'<BR>';  
$recordSet->MoveNext(); //指向下一个记录  
} //列表显示数据  

$recordSet->Close(); //可选  
$conn->Close(); //可选  
?>  
-------------------------------------------------------------------------------- 

$recordSet在$recordSet->fields中返回当前数组, 对字段进行数字索引(从0开始). 我们用MoveNext() 函数移动到下一个记录 . 当数据库搜索到结尾时EOF property被 设置 为true. 如果Execute()发生错误 , recordset返回flase.  

$recordSet->fields[]数组产生于PHP的数据库扩展。有些数据库扩展只能按数字索引而不能按字段名索引.如果坚持要使用字段名索引,则应采用SetFetchMode函数.无论采用哪种格式索引,recordset都可以由Execute()或SelectLimit()创建。  

PHP:-------------------------------------------------------------------------------- 
$db->SetFetchMode(ADODB_FETCH_NUM);  
$rs1 = $db->Execute('select * from table'); //采用数字索引  
$db->SetFetchMode(ADODB_FETCH_ASSOC);  
$rs2 = $db->Execute('select * from table'); //采用字段名索引  
print_r($rs1->fields); # shows array([0]=>'v0',[1] =>'v1')  
print_r($rs2->fields); # shows array(['col1']=>'v0',['col2'] =>'v1')-------------------------------------------------------------------------------- 

如果要获取记录号,你可以使用$recordSet->RecordCount()。如果没有当前记录则返回-1。  

实例 2: Advanced Select with Field Objects  
搜索表格,显示前两个字段. 如果第二个字段是时间或日期格式,则将其改为美国标准时间格式显示.  

PHP:-------------------------------------------------------------------------------- 

<?  
include('adodb.inc.php'); ///载入adodb  
$conn = &ADONewConnection('access'); //新建一个连接  
$conn->PConnect('northwind'); //连接名为northwind的MS-Access数据库  
$recordSet = &$conn->Execute('select CustomerID,OrderDate from Orders'); //从Orders表中搜索CustomerID和OrderDate两个字段  
if (!$recordSet)  
print $conn->ErrorMsg(); //如果数据库搜索错误,显示错误信息  
else  
while (!$recordSet->EOF) {  
$fld = $recordSet->FetchField(1); //把第二个字段赋值给$fld  
$type = $recordSet->MetaType($fld->type); //取字段值的格式  

if ( $type == 'D' || $type == 'T')  
print $recordSet->fields[0].' '.  
$recordSet->UserDate($recordSet->fields[1],'m/d/Y').'<BR>'; //如果字段格式为日期或时间型,使其以美国标准格式输出  
else  
print $recordSet->fields[0].' '.$recordSet->fields[1].'<BR>'; //否则以原样输出  

$recordSet->MoveNext(); //指向下一个记录  
}  
$recordSet->Close(); //可选  
$conn->Close(); //可选  

?>  
-------------------------------------------------------------------------------- 

在这个例子里, 我们用FetchField()函数检查了第二个字段的格式. 它返回了一个包含三个变量的对象  

name: 字段名  
type: 字段在其数据库中的真实格式  
max_length:字段最大长度,部分数据库不会返回这个值,比如MYSQL,这种情况下max_length值等于-1.  
我们使用MetaType()把字段的数据库格式转化为标准的字段格式  

C: 字符型字段,它应该可以在<input type="text">标签下显示.  
X: 文本型字段,存放比较大的文本,一般作用于<textarea>标签  
B: 块,二进制格式的大型对象,如图片  
D: 日期型字段  
T: 时间型字段  
L: 逻辑型字段 (布尔逻辑或bit-field)  
I: 整型字段  
N: 数字字段. 包括自动编号(autoincrement), 数字(numeric), 浮点数(floating point), 实数(real)和整数(integer).  
R: 连续字段. 包括serial, autoincrement integers.它只能工作于指定的数据库.  
如果metatype是日期或时戳类型的,我们用用户定义的日期格式UserDate()函数来输出,UserDate()用来转换PHP SQL 日期字符串格式到用户定义的格式,MetaType()的另一种用法是在插入和替换前确认数据有效性.  

实例 3: Inserting 
在订单数据表中插入一个包含日期和字符型数据的记录,插入之前必须先进行转换, eg: the single-quote in the word John's.  

PHP:-------------------------------------------------------------------------------- 

<?  
include('adodb.inc.php'); // 载入adodb  
$conn = &ADONewConnection('access'); //新建一个连接  

$conn->PConnect('northwind'); //连接到ACCESS数据库northwind  
$shipto = $conn->qstr("John's Old Shoppe");  

$sql = "insert into orders (customerID,EmployeeID,OrderDate,ShipName) ";  
$sql .= "values ('ANATR',2,".$conn->DBDate(time()).",$shipto)";  

if ($conn->Execute($sql) === false) {  
print 'error inserting: '.$conn->ErrorMsg().'<BR>';  
} //如果插入不成功输出错误信息  
?>  
-------------------------------------------------------------------------------- 

在这个例子中,我们看到ADOdb可以很容易地处理一些高级的数据库操作. unix时间戳 (一个长整数)被DBDate()转换成正确的Access格式, and the right escape character is used for quoting the John's Old Shoppe, which is John''s Old Shoppe and not PHP's default John's Old Shoppe with qstr().  

观察执行语句的错误处理. 如果Execute()发生错误, ErrorMsg()函数会返回最后一个错误提示. Note: php_track_errors might have to be enabled for error messages to be saved.  

实例 4: Debugging  
<?  
include('adodb.inc.php'); // 载入adodb  
$conn = &ADONewConnection('access'); //新建一个连接  
$conn->PConnect('northwind'); //连接到ACCESS数据库northwind  
$shipto = $conn->qstr("John's Old Shoppe");  
$sql = "insert into orders (customerID,EmployeeID,OrderDate,ShipName) ";  
$sql .= "values ('ANATR',2,".$conn->FormatDate(time()).",$shipto)";  
$conn->debug = true;  
if ($conn->Execute($sql) === false) print 'error inserting';  
?>  

在上面这个例子里,我们设置了debug = true.它会在执行前显示所有SQL信息, 同时,它也会显示所有错误提示. 在这个例子里,我们不再需要调用ErrorMsg() . 要想显示recordset, 可以参考 rs2html()实例.  

也可以参阅 Custom Error Handlers 的部分内容。  

实例 5: MySQL and Menus  
连接到MySQL数据库agora, 并从SQL声明中产生一个<select>下拉菜单 ,菜单的 <option> 选项显示为第一个字段, 返回值为第二个字段.  

PHP:-------------------------------------------------------------------------------- 

<?  
include('adodb.inc.php'); # load code common to ADOdb  
$conn = &ADONewConnection('mysql'); //eate a connection  
$conn->PConnect('localhost','userid','','agora'); //SQL数据库,数据库名为agora  
$sql = 'select CustomerName, CustomerID from customers'; //搜索字段name用于显示,id用于返回值  
$rs = $conn->Execute($sql);  
print $rs->GetMenu('GetCust','Mary Rosli'); //显示菜单  
?>  
-------------------------------------------------------------------------------- 

在这里我们定义了一个名为GetCust的菜单,其中的'Mary Rosli'被选定. See GetMenu(). 我们还有一个把记录值返回到数组的函数: GetArray(), and as an associative array with the key being the first column: GetAssoc().  

实例 6: Connecting to 2 Databases At Once  

PHP:-------------------------------------------------------------------------------- 

<?  
include('adodb.inc.php'); # load code common to ADOdb  
$conn1 = &ADONewConnection('mysql'); # create a mysql connection  
$conn2 = &ADONewConnection('oracle'); # create a oracle connection  

$conn1->PConnect($server, $userid, $password, $database);  
$conn2->PConnect(false, $ora_userid, $ora_pwd, $oraname);  

$conn1->Execute('insert ...');  
$conn2->Execute('update ...');  
?> //同时连接两个数据库  
-------------------------------------------------------------------------------- 

7: Generating Update and Insert SQL  
ADOdb 1.31以上的版本支持两个新函数: GetUpdateSQL( ) 和 GetInsertSQL( ). This allow you to perform a "SELECT * FROM table query WHERE...", make a copy of the $rs->fields, modify the fields, and then generate the SQL to update or insert into the table automatically.  
我们来看看这两个函数在这个工作表中是如何执行的: (ID, FirstName, LastName, Created).  

Before these functions can be called, you need to initialize the recordset by performing a select on the table. Idea and code by Jonathan Younger jyounger#unilab.com.  

PHP:-------------------------------------------------------------------------------- 

<?  
#==============================================  
# SAMPLE GetUpdateSQL() and GetInsertSQL() code  
#==============================================  
include('adodb.inc.php');  
include('tohtml.inc.php'); // 奇怪,这句似乎有没有都一样,哪位朋友知道原因请给个解释  
#==========================  
# This code tests an insert  

$sql = "SELECT * FROM ADOXYZ WHERE id = -1"; #查找一个空记录 $conn = &ADONewConnection("mysql"); # create a connection  
$conn->debug=1;  
$conn->PConnect("localhost", "admin", "", "test"); # connect to MySQL, testdb  
$rs = $conn->Execute($sql); # 获取一个空记录  
$record = array(); # 建立一个数组准备插入  
# 设置插入值$record["firstname"] = "Bob";  
$record["lastname"] = "Smith";  
$record["created"] = time();  

# Pass the empty recordset and the array containing the data to insert  
# into the GetInsertSQL function. The function will process the data and return  
# a fully formatted insert sql statement.# 插入前会格式化变量  
$insertSQL = $conn->GetInsertSQL($rs, $record);  

$conn->Execute($insertSQL); # 在数据库中插入数据  

#==========================  
# 下面这段程序演示修改数据,大致与上一段程序相同  

$sql = "SELECT * FROM ADOXYZ WHERE id = 1";  
# Select a record to update  

$rs = $conn->Execute($sql); # Execute the query and get the existing record to update  

$record = array(); # Initialize an array to hold the record data to update  

# Set the values for the fields in the record  
$record["firstname"] = "Caroline";  
$record["lastname"] = "Smith"; # Update Caroline's lastname from Miranda to Smith  

# Pass the single record recordset and the array containing the data to update  
# into the GetUpdateSQL function. The function will process the data and return  
# a fully formatted update sql statement with the correct WHERE clause.  
# If the data has not changed, no recordset is returned  
$updateSQL = $conn->GetUpdateSQL($rs, $record);  

$conn->Execute($updateSQL); # Update the record in the database  
$conn->Close();  
?>  
-------------------------------------------------------------------------------- 

实例 8 Implementing Scrolling with Next and Previous  
下面的演示是个很小的分页浏览程序.  

PHP:-------------------------------------------------------------------------------- 
include_once('../adodb.inc.php');  
include_once('../adodb-pager.inc.php');  
session_start();  

$db = NewADOConnection('mysql');  

$db->Connect('localhost','root','','xphplens');  

$sql = "select * from adoxyz ";  

$pager = new ADODB_Pager($db,$sql);  
$pager->Render($rows_per_page=5);-------------------------------------------------------------------------------- 

运行上面这段程序的结果如下:  

|< << >> >|  
ID First Name Last Name Date Created  
36 Alan Turing Sat 06, Oct 2001  
37 Serena Williams Sat 06, Oct 2001  
38 Yat Sun Sun Sat 06, Oct 2001  
39 Wai Hun See Sat 06, Oct 2001  
40 Steven Oey Sat 06, Oct 2001  

Page 8/10  

调用Render($rows)方法可以分页显示数据.如果你没有给Render()输入值, ADODB_Pager默认值为每页10个记录.  

你可以在 SQL里选择显示任意字段并为其定义名称:  

$sql = 'select id as "ID", firstname as "First Name",  
lastname as "Last Name", created as "Date Created" from adoxyz';  
以上代码你可以在adodb/tests/testpaging.php 中找到, ADODB_Pager 对象在adodb/adodb-pager.inc.php中. 你可以给ADODB_Pager 的代码加上图像和改变颜色,你可以通过设置$pager->htmlSpecialChars = false来显示HTML代码.  

Some of the code used here was contributed by Iván Oliva and Cornel G.  

Example 9: Exporting in CSV or Tab-Delimited Format  
We provide some helper functions to export in comma-separated-value (CSV) and tab-delimited formats:  

PHP:-------------------------------------------------------------------------------- 
include_once('/path/to/adodb/toexport.inc.php');include_once('/path/to/adodb/adodb.inc.php');  
$db = &NewADOConnection('mysql');$db->Connect($server, $userid, $password, $database);$rs = $db->Execute('select fname as "First Name", surname as "Surname" from table');  

print "<pre>";print rs2csv($rs); # return a string, CSV formatprint '<hr>'; $rs->MoveFirst(); # note, some databases do not support MoveFirstprint rs2tab($rs,false); # return a string, tab-delimited  
# false == suppress field names in first lineprint '<hr>';$rs->MoveFirst();rs2tabout($rs); # send to stdout directly (there is also an rs2csvout function)  
print "</pre>";  

$rs->MoveFirst();$fp = fopen($path, "w");  
if ($fp) { rs2csvfile($rs, $fp); # write to file (there is also an rs2tabfile function)  
fclose($fp);}-------------------------------------------------------------------------------- 

Carriage-returns or newlines are converted to spaces. Field names are returned in the first line of text. Strings containing the delimiter character are quoted with double-quotes. Double-quotes are double-quoted again. This conforms to Excel import and export guide-lines.  

All the above functions take as an optional last parameter, $addtitles which defaults to true. When set to false field names in the first line are suppressed.  

Example 10: Recordset Filters  
Sometimes we want to pre-process all rows in a recordset before we use it. For example, we want to ucwords all text in recordset.  

PHP:-------------------------------------------------------------------------------- 
include_once('adodb/rsfilter.inc.php');  
include_once('adodb/adodb.inc.php');  

// ucwords() every element in the recordset  
function do_ucwords(&$arr,$rs)  
{  
foreach($arr as $k => $v) {  
$arr[$k] = ucwords($v);  
}  
}  

$db = NewADOConnection('mysql');  
$db->PConnect('server','user','pwd','db');  

$rs = $db->Execute('select ... from table');  
$rs = RSFilter($rs,'do_ucwords');-------------------------------------------------------------------------------- 

The RSFilter function takes 2 parameters, the recordset, and the name of the filter function. It returns the processed recordset scrolled to the first record. The filter function takes two parameters, the current row as an array, and the recordset object. For future compatibility, you should not use the original recordset object. 

PHP 相关文章推荐
相对路径转化成绝对路径
Apr 10 PHP
php学习 函数 课件
Jun 15 PHP
在PHP中养成7个面向对象的好习惯
Jul 17 PHP
php设计模式  Command(命令模式)
Jun 17 PHP
php 注释规范
Mar 29 PHP
php使用curl检测网页是否被百度收录的示例分享
Jan 31 PHP
浅析PHP微信支付通知的处理方式
May 25 PHP
PHP设计模式之适配器模式代码实例
May 11 PHP
php跨服务器访问方法小结
May 12 PHP
全面解析PHP验证码的实现原理 附php验证码小案例
Aug 17 PHP
php使用正则表达式去掉html中的注释方法
Nov 03 PHP
php-fpm开启状态统计的方法详解
Jun 23 PHP
ADODB的数据库封包程序库
Dec 31 #PHP
用ADODB来让PHP操作ACCESS数据库的方法
Dec 31 #PHP
介绍几个array库的新函数 php
Dec 29 #PHP
简单的过滤字符串中的HTML标记
Dec 25 #PHP
一个PHP模板,主要想体现一下思路
Dec 25 #PHP
ob_start(),ob_start('ob_gzhandler')使用
Dec 25 #PHP
php预定义常量
Dec 25 #PHP
You might like
php格式化日期和时间格式化示例分享
2014/02/24 PHP
ThinkPHP中Session用法详解
2014/11/29 PHP
PHP网站开发中常用的8个小技巧
2015/02/13 PHP
thinkphp3.x连接mysql数据库的方法(具体操作步骤)
2016/05/19 PHP
PHP基于方差和标准差计算学生成绩的稳定性示例
2017/07/04 PHP
javascript Demo模态窗口
2009/12/06 Javascript
jQuery下的几个你可能没用过的功能
2010/08/29 Javascript
通过Jquery遍历Json的两种数据结构的实现代码
2011/01/19 Javascript
深入理解JavaScript系列(44):设计模式之桥接模式详解
2015/03/04 Javascript
点评js异步加载的4种方式
2015/12/22 Javascript
AngularJS中实现用户访问的身份认证和表单验证功能
2016/04/21 Javascript
AngularJS  $on、$emit和$broadcast的使用
2016/09/05 Javascript
jQuery对table表格进行增删改查
2020/12/22 Javascript
JS正则表达式验证密码格式的集中情况总结
2017/02/23 Javascript
ES6新特性之解构、参数、模块和记号用法示例
2017/04/01 Javascript
js获取指定时间的前几秒
2017/04/05 Javascript
Node.js学习之地址解析模块URL的使用详解
2017/09/28 Javascript
ejsExcel模板在Vue.js项目中的实际运用
2018/01/27 Javascript
node.js 基于cheerio的爬虫工具的实现(需要登录权限的爬虫工具)
2019/04/10 Javascript
Layui弹框中数据表格中可双击选择一条数据的实现
2020/05/06 Javascript
详细分析Node.js 多进程
2020/06/22 Javascript
[01:02:26]DOTA2-DPC中国联赛 正赛 SAG vs RNG BO3 第二场 1月18日
2021/03/11 DOTA
Python常用列表数据结构小结
2014/08/06 Python
Python3利用SMTP协议发送E-mail电子邮件的方法
2017/09/30 Python
python numpy 显示图像阵列的实例
2018/07/02 Python
django+xadmin+djcelery实现后台管理定时任务
2018/08/14 Python
python实现简单的文字识别
2018/11/27 Python
django将数组传递给前台模板的方法
2019/08/06 Python
python多进程(加入进程池)操作常见案例
2019/10/21 Python
Pandas时间序列重采样(resample)方法中closed、label的作用详解
2019/12/10 Python
python一些性能分析的技巧
2020/08/30 Python
python3排序的实例方法
2020/10/20 Python
css3+jq创作含苞待放的荷花
2014/02/20 HTML / CSS
沪江旗下的海量优质课程平台:沪江网校
2017/11/07 全球购物
经贸日语专业个人求职信
2013/12/13 职场文书
销售提升方案
2014/06/07 职场文书