免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1535 | 回复: 0
打印 上一主题 下一主题

php支持postgresql [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-20 09:46 |只看该作者 |倒序浏览
当时是从安装phplib开始的

下载phplib
把phplib中的php目录复制到/var/www/
# cp -r php /var/www/  

修改php.ini
auto_prepend_file = prepend.php3 #包含的文件
nclude_path = ".:/var/www/php" #指出查找的路径
在测试时会出现:
Fatal error: Call to undefined function pg_connect()

原因:php不支持pgsql。
解决方法,重新编译安装php。

重装php 
-------------------------------------
./configure --with-pdo-pgsql --with-pgsql #重点啊
-------------------------------------
make
make install

指定使用的php
#find / -name php
/usr/bin/php
/usr/local/bin/php
#/usr/bin/php -v
5.3.3
#/usr/local/bin/php -v
5.3.6 
我下的包是5.3.6,make install 后 ,php  安装在/usr/local/bin/中
通过测试知道 编译后的php能用

设置lighttpd.conf
fastcgi.server中的
"bin-path" => "/usr/bin/php-cgi"
更改为
"bin-path" => "/usr/local/bin/php-cgi"
更换原来的php及 php-cgi
#mv /usr/bin/php /usr/bin/php.bk
#mv /usr/bin/php-cgi /usr/bin/php-cgi.bk
#ln -s /usr/local/bin/php /usr/bin/php 
ln -s /usr/local/bin/php-cgi /usr/bin/php-cgi
 
重启 lighttpd
/etc/init.d/lighttpd restart
 
测试
-----------------------------------------------------------------------------
数据准备
postgres@~$ /usr/local/pgsql/bin/createdb test

postgres@~$ /usr/local/pgsql/bin/psql test
postgres=# CREATE TABLE Countries (
postgres(#  CountryID char(2) NOT NULL,
postgres(#  CountryName varchar(255) NOT NULL,
postgres(#  PRIMARY KEY  (CountryID)
postgres(# );
CREATE TABLE
postgres=#

postgres=# INSERT INTO Countries VALUES ('AL', 'Albania');
postgres=# INSERT INTO Countries VALUES ('DZ', 'Algeria');
postgres=# INSERT INTO Countries VALUES ('AS', 'American Samoa');
postgres=# INSERT INTO Countries VALUES ('AD', 'Andorra');
postgres=# INSERT INTO Countries VALUES ('AO', 'Angola');
postgres=# INSERT INTO Countries VALUES ('AI', 'Anguilla');
postgres=# INSERT INTO Countries VALUES ('AQ', 'Antarctica');
postgres=# INSERT INTO Countries VALUES ('AG', 'Antigua And Barbuda');
postgres=# INSERT INTO Countries VALUES ('AR', 'Argentina');

postgres=# SELECT * FROM Countries;
 countryid |     countryname
-----------+---------------------
 AL        | Albania
 DZ        | Algeria
 AS        | American Samoa
 AD        | Andorra
 AO        | Angola
 AI        | Anguilla
 AQ        | Antarctica
 AG        | Antigua And Barbuda
 AR        | Argentina
(9 rows)
Retrieving data

test.php
-------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
  <head></head>
  <body>       

<?php
// attempt a connection
$dbh = pg_connect("host= dbname=test user=postgres");
if (!$dbh) {
die("Error in connection: " . pg_last_error());
}       

// execute query
$sql = "SELECT * FROM Countries";
$result = pg_query($dbh, $sql);
if (!$result) {
die("Error in SQL query: " . pg_last_error());
}       

// iterate over result set
// print each row
while ($row = pg_fetch_array($result)) {
echo "  $row[0] $row[1] <br />"  ;
}       

// free memory
pg_free_result($result);       

// close connection
pg_close($dbh);
?>       

  </body>
</html>

上述测试来自:http://www.techrepublic.com/blog/howdoi/how-do-i-use-php-with-postgresql/110
 
运行
#php test.php
-------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head></head>
<body>       

 AL Albania <br />  DZ Algeria <br />  AS American Samoa <br />  AD Andorra <br />  AO Angola <br />  AI Anguilla <br />  AQ Antarctica <br />  AG Antigua And Barbuda <br />  AR Argentina <br />       

</body>
</html>
-------------------------------------
在浏览器中显示
-------------------------------------
AL Albania 
DZ Algeria 
AS American Samoa 
AD Andorra 
AO Angola 
AI Anguilla 
AQ Antarctica 
AG Antigua And Barbuda 
AR Argentina 
-------------------------------------

总结
php连接考php支持;
如果想使用pgsql,编译的时候使用参数 --with-pgsql;
如果想使用pdo,编译的时候使用参数 --with-pdo-pgsql ;
lighttpd服务器使用php-cgi进行解析,所以要把php-cgi的绝对路径传给fastcgi.server中的"bin-path"

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP