PDO操作MYSQL基础教程分享
时间:2021-07-01 10:21:17
帮助过:27人阅读
PDO支持的PHP版本为PHP5.1以及更高的版本,而且在PHP5.2下PDO默认为开启状态,下面是在php.ini中PDO的配置:extension=php_pdo.dll 为了启用对某个数据库的支持,需要在php配置文件中将相应的扩展打开,例如要支持MySQL,需要开启下面的扩展extension=php_pdo_mysql.dll下面是使用PDO对mysql进行基本的增删改查操作创建test数据库,然后运行以下SQL语句:DROP TABLE IF EXISTS `test`;CREATE TABLE `test` (`id` int(10) NOT NULL DEFAULT ‘0‘,`user` char(20) DEFAULT NULL,PRIMARY KEY (`id`),KEY `idx_age` (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;程序代码:<?phpheader("content-type:text/html;charset=utf-8");$dsn="mysql:dbname=test;host=localhost";$db_user=‘root‘;$db_pass=‘admin123‘;try{$pdo=new PDO($dsn,$db_user,$db_pass);}catch(PDOException $e){echo ‘数据库连接失败‘.$e->getMessage();}//新增$sql="insert into test (id,user) values (1,‘phpthinking‘)";$res=$pdo->exec($sql);echo ‘影响行数:‘.$res;//修改$sql="update test set user=‘phpthinking‘ where id=1";$res=$pdo->exec($sql);echo ‘影响行数:‘.$res;//查询$sql="select * from test";$res=$pdo->query($sql);foreach($res as $row){echo $row[‘user‘].‘<br/>‘;}//删除$sql="delete from test where id=1";$res=$pdo->exec($sql);echo ‘影响行数:‘.$res;PDO操作MYSQL基础教程分享
标签:分享 exist 数据库连接 prim ica mysq extension 连接失败 .dll