Home  >  Article  >  php教程  >  php adodb操作mysql数据库

php adodb操作mysql数据库

WBOY
WBOYOriginal
2016-06-13 12:24:03999browse

前提是要在这里: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());

?>

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