这篇主要介绍了PHP中ADODB如何操作access数据库,有一定的参考价值,感兴趣的朋友可以参考一下!
<?php //定义数据库变量 $DB_TYPE = "mysql"; $DB_HOST = "localhost"; $DB_USER = "root"; $DB_PASS = ""; $DB_DATABASE = "ai-part"; require_once("../adodb/adodb.inc.php"); $db = NewADOConnection("$DB_TYPE");//建立数据库对象 $db->debug = true;//数据库的DEBUG测试,默认值是false $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC;//返回的记录集形式,关联形式 /*** 返回的记录集形式 define('ADODB_FETCH_DEFAULT',0); define('ADODB_FETCH_NUM',1); define('ADODB_FETCH_ASSOC',2); define('ADODB_FETCH_BOTH',3); 以上常量,在adodb.inc.php里定义了,也就是可用"$ADODB_FETCH_MODE=2"方式 ADODB_FETCH_NUM 返回的记录集中的索引,是数字形式,即数据库字段的排序顺序值 ADODB_FETCH_ASSOC 返回的记录集中的索引,是原数据库字段名 ADODB_FETCH_BOTH 和 ADODB_FETCH_DEFAULT 是同时返回以上两种。某些数据库不支持 An example: $ADODB_FETCH_MODE = ADODB_FETCH_NUM; $rs1 = $db->Execute('select * from table'); $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; $rs2 = $db->Execute('select * from table'); print_r($rs1->fields); # 返回的数组是: array([0]=>'v0',[1] =>'v1') print_r($rs2->fields); # 返回的数组是: array(['col1']=>'v0',['col2'] =>'v1') ***/ //连接数据库,方法有Connect,PConnect,NConnect,一般使用Connect if (!@$db->Connect("$DB_HOST", "$DB_USER", "$DB_PASS", "$DB_DATABASE")) { exit('<a href="/">服务器忙,请稍候再访问</a>'); } /* $db-> $rs-> 此类的使用方法 Execute($sql),执行参数中的$sql语句 SelectLimit($sql,$numrows=-1,$offset=-1) $numrows:取几条记录,$offset,从第几条开始取,一般是用于分页,或只取出几条记录的时候用 */ //Example: 取出多个记录 $sql = "Select * FROM table orDER BY id DESC"; if (!$rs = $db->Execute($sql)) {//执行SQL语句,并把结果返回给$rs变量 echo $db->ErrorMsg();//这个是打印出错信息 $db->Close();//关闭数据库 exit(); } while (!$rs->EOF) {//遍历记录集 echo $rs->fields['username'] . '<br>'; //print_r($rs->fields)试试,$rs->fields['字段名'],返回的是这个字段里的值 $rs->MoveNext();//将指针指到下一条记录,否则出现死循环! } $rs->Close();//关闭以便释放内存 //插入新记录 $sql = "Insert table (user_type,username) VALUES (3, 'liucheng')"; $db->Execute($sql); //更新记录 $sql = "Update table SET user_type=3 Where id=2"; $db->Execute($sql); //删除记录 $sql = "Delete FROM table Where id=2"; $db->Execute($sql); // 取单个记录 //$db->GetRow($sql), 取第一条记录,并返回一个数组,出错返回false $sql = "Select username,password,user_type FROM table Where id=3"; $data_ary = $db->GetRow($sql); if ($data_ary == false) { echo '没有找到此记录'; exit(); } else { echo $data_ary['username'] . ' ' . $data_ary['password'] . ' ' . $data_ary['user_type'] . '<br>'; } //另一种方法 $sql = "Select username,password,user_type FROM table Where id=3"; if (!$rs = $db->Execute($sql)) { echo $db->ErrorMsg(); $db->Close(); exit(); } if (!$result = $rs->FetchRow()) { echo '没有找到此记录'; exit(); } else { echo $result['username'] . ' ' . $result['password'] . ' ' . $result['user_type'] . '<br>'; } // 取单个字段 //$db->GetOne($sql) 取出第一条记录的第一个字段的值,出错则返回false $sql = "Select COUNT(id) FROM table"; $record_nums = $db->GetOne($sql); echo $record_nums; $sql = "Select username,password,user_type FROM table Where user_id=1"; $result = $db->GetOne($sql); echo $result;//打印出username的值 /* 在进行添加,修改,删除记录操作时, 要对字符串型的字段,使用$db->qstr()对用户输入的字符进行处理, 对数字型字段,要进行数据判断 更新记录,注意:这是针对php.ini中,magic_quotes被设置为Off的情况,如果不确定,可以使用 $db->qstr($content,get_magic_quotes_gpc()) 注意:content= 等号右边,没有单引号 */ $sql = "Update table SET content=" . $db->qstr($content) . " Where id=2"; $db->Execute($sql); /*$db->Insert_ID(),无参数,返回刚刚插入的那条记录的ID值,仅支持部分数据库,带auto-increment功能的数据库,如PostgreSQL, MySQL 和 MS SQL */ //Example: $sql = "Insert table (user_type,username) VALUES (3, 'liucheng')"; $db->Execute($sql); $data_id = $db->Insert_ID(); echo $data_id; /*$db->GenID($seqName = 'adodbseq',$startID=1),产生一个ID值.$seqName:用于产生此ID的数据库表名,$startID:起始值,一般不用设置,它会把$seqName中的值自动加1.支持部分数据库,某些数据库不支持 Insert_ID,GenID,一般我用GenID,使用它的目的,是在插入记录后,要马上得到它的ID时,才用 */ /*Example: 先创建一个列名为user_id_seq的表,里面只有一个字段,id,int(10),NOT NULL,然后插入一条值为0的记录 */ $user_id = $db->GenID('user_id_seq'); $sql = "Insert table (id, user_type,username) VALUES (" . $user_id . ", 3, 'liucheng')"; $db->Execute($sql); /* $rs->RecordCount(),取出记录集总数,无参数 它好像是把取出的记录集,用count()数组的方法,取得数据的数量 如果取大量数据,效率比较慢,建议使用SQL里的COUNT(*)的方法 $sql = "Select COUNT(*) FROM table", 用此方法时,不要在SQL里加ORDER BY,那样会降低执行速度 Example: */ $sql = "Select * FROM table orDER BY id DESC"; if (!$rs = $db->Execute($sql)) { echo $db->ErrorMsg(); $db->Close(); exit(); } $record_nums = $rs->RecordCount(); /* 如果想对某一结果集,要进行两次同样的循环处理,可以用下面方法 以下,只是一个例子,只为说明$rs->MoveFirst()的使用方法 */ $sql = "Select * FROM table orDER BY id DESC"; if (!$rs = $db->Execute($sql)) { echo $db->ErrorMsg(); $db->Close(); exit(); } $username_ary = array(); while (!$rs->EOF) { $username_ary[] = $rs->fields['username'] echo $rs->fields['username'] . '<br>';//print_r($rs->fields)试试,$rs->fields['字段名'],返回的是这个字段里的值 $rs->MoveNext();//将指针指到下一条记录,不用的话,会出现死循环! } $username_ary = array_unique($username_ary); $rs->MoveFirst();//将指针指回第一条记录 while (!$rs->EOF) { echo $rs->fields['password'] . '<br>';//print_r($rs->fields)试试,$rs->fields['字段名'],返回的是这个字段里的值 $rs->MoveNext();//将指针指到下一条记录 } $rs->Close(); //当本页程序,对数据库的操作完毕后,要$db->Close(); $db->Close(); /*一个不错的方法 */ if (isset($db)) { $db->Close(); } ?>
【相关教程推荐】
1. php编程从入门到精通全套视频教程
2. php从入门到精通
3. bootstrap教程

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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.
