PDO的环境配置:开启支持PDO 在php.ini配置文件中开启:
extension=php_pdo.dll
extension=php_pdo_mysql.dll
在PDO操作中涉及到类:PDO、PDOStatement(预处理对象)、PDOException(异常类)
一、 PDO类的构造方法:
---------------------------------------...
分类:
Web程序 时间:
2014-06-01 15:26:15
阅读次数:
394
本机 PHP 安装./configure --prefix=/usr/local/php5
--with-gd --enable-gd-native-ttf --enable-gd-jis-conv --with-mysql
--with-pdo-mysql --with-oci8=instant....
分类:
系统相关 时间:
2014-05-18 00:56:23
阅读次数:
487
本例是PDO连接Mysql数据库的方法:连接别的数据库的方法大同小异,只需在php.ini文件中加载“extension=php_pdo.dll“和”extension=php_pdo_mysql.dll(根据需求加载对应的dll文件)“,保存重启服务器即可。以下是本例代码:
1 2 3...
分类:
数据库 时间:
2014-05-13 18:24:02
阅读次数:
366