Home > php教程 > php手册 > body text

php adodb操作mysql数据库

WBOY
Release: 2016-06-13 12:24:03
Original
973 people have browsed it

前提是要在这里:http://sourceforge.net/project/showfiles.php?group_id=42718&package_id=220409&release_id=649609

复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //创建数据库连接对象
$conn -> debug =true;
$conn -> Connect('localhost', 'root', '1981427','test' ); //连接数据库
$rs=$conn->execute ("select *from tablename1");
print_r($rs->GetRows());

?>

Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!