系统环境:CentOSrelease6.2(Final)软件版本:php-5.3.13php安装的编译参数:./configure--prefix=/usr/local/php5--with-config-file-path=/usr/local/php5/etc--with-mysql=/usr/local/mysql-5.5.23/--with-mysqli=mysqlnd--with-pdo-mysql--with-apxs2=/usr/local..
分类:
Web程序 时间:
2014-12-18 15:23:26
阅读次数:
181
系统环境:CentOSrelease6.2(Final)软件版本:php-5.3.13php安装的编译参数:./configure--prefix=/usr/local/php5--with-config-file-path=/usr/local/php5/etc--with-mysql=/usr/local/mysql-5.5.23/--with-mysqli=mysqlnd--with-pdo-mysql--with-apxs2=/usr/local..
分类:
Web程序 时间:
2014-12-18 15:22:57
阅读次数:
183
原文 Unofficial Microsoft SQL Server Driver for PHP (sqlsrv)Here are unofficial modified builds of Microsoft's sqlsrv and pdo_sqlsrv drivers for PHP, ve...
分类:
数据库 时间:
2014-12-17 10:38:53
阅读次数:
306
怀疑mssql的默认编码。。。应该不是utf8吧???query("SELECT * FROM ofadmin");foreach($a as $b) {print_r ($b); }?>效果图
分类:
数据库 时间:
2014-12-16 20:58:00
阅读次数:
243
1.进入PHP源码包ext/pdo目录cdext/pdo2.执行/usr/local/php/bin/phpize[假设PHP的安装目录为/usr/local/php]/usr/local/php/bin/phpize3.配置扩展pdo./configure --with-php-config=/u...
分类:
Web程序 时间:
2014-12-16 18:41:29
阅读次数:
171
如果pdo在linux下出现exception 'PDOException' with message 'could not find driver'则问题是php编译时少加--with-pdo-mysql=/usr/local/mysql wget http://pecl.php.net/...
分类:
数据库 时间:
2014-12-16 16:28:46
阅读次数:
212
来源:PHP开发学习门户
地址:http://www.phpthinking.com/archives/805
PHP中的PDO扩展为PHP访问数据库定义了一个轻量级的、一致性的接口,它提供了一个数据访问抽象层,
这样,无论使用什么数据库,都可以通过一致的函数执行查询和获取数据。
PDO支持的PHP版本为PHP5.1以及更高的版本,而且在PHP5.2下PDO默认为开启状态,
...
分类:
数据库 时间:
2014-12-16 11:51:27
阅读次数:
191
我们都知道,只要合理正确使用PDO,可以基本上防止SQL注入的产生,本文主要回答以下两个问题:为什么要使用PDO而不是mysql_connect?为何PDO能防注入?使用PDO防注入的时候应该特别注意什么?一、为何要优先使用PDO?PHP手册上说得很清楚:Prepared statements an...
分类:
其他好文 时间:
2014-12-14 18:31:36
阅读次数:
194
使用预处理方式: $dbh?=?new?PDO(‘mysql:host=localhost;dbname=access_control‘,?‘root‘,?‘‘);
$dbh->setAttribute(PDO::ATTR_ERRMODE,?PDO::ERRMODE_EXCEPTION);
$dbh->exec(‘set?names?utf8‘);
/*添加...
分类:
数据库 时间:
2014-12-11 12:34:24
阅读次数:
222
YII2进行MYSQL数据库操作时出现Database Exception – yii\db\Exception SQLSTATE[HY000] [2002] No such file or directory错误的解决方法在进行数据库操作时出现如下类似错误,实际则是PHP配置文件php.ini中未指定mysql.sock(或mysqld.sock)文件路径导致的PDO无法链接数据库Databa...
分类:
数据库 时间:
2014-12-10 16:30:55
阅读次数:
923