在debian下為PHP5.0.3安裝pdo模組(轉)
pdo作為下一個php的資料庫統一介面,目前的版本是0.9,看來不久就可以release了,搶先嚐鮮。
經過測試,pdo聯結比adodb快3倍左右,和直接聯結相差很小。
測試工具:AB
測試條件Apache/2.0.54 (Debian GNU/Linux) mod_fastcgi/2.4.2 PHP/5.0.4-0.10 mod_perl/2.0.1 Perl/v5.8.7 Server at 127.0.0.1 Port 80
資料庫:postgres8.0.3
硬體:C4-1.7g;384M
安裝pdo需要php的開發工具包以及gccg++,當然也需要php的php5-dev
安裝PDO_pgsql需要libpg-dev以上軟體一定要apt-get否則會失敗!!!
PHP 程式碼:
#>pear remote-info pdopear remote-info pdoNotice: Undefined index: name in Remote.php on line 132Notice: Undefined index: version in Remote.php on line 133Notice: Undefined index: name in CLI.php on line 443Notice: Undefined index: license in CLI.php on line 444Notice: Undefined index: category in CLI.php on line 445Notice: Undefined index: summary in CLI.php on line 446Notice: Undefined index: description in CLI.php on line 447Package details:================LatestInstalled - no -PackageLicenseCategorySummaryDescription
OK
PHP 程式碼:
#》pear install pdo-0.9
編譯好的模組放在了:/usr/lib/php5/20041030/ 目錄下
PHP 程式碼:
#>cd /usr/lib/php5/20041030/
另外還需要一個pdo.info檔案
不會寫就炒下面的:
PHP 程式碼:
package="pdo"extname="PDO"dsoname="pdo"sapilist="apache apache2 cgi cli fcgi"depends=""priority="500"architecture="any"
PHP 程式碼:
#》 /usr/sbin/php5-modconf apache2
pdo就安裝成功了
下面安裝pdo_pgsql-0.9
這個需要按下面步驟進行:
PHP 程式碼:
#》pear download pdo_pgsql-0.9#> tar zxf PDO_PGSQL-0.9.tgz#>cd PDO_PGSQL-0.9#>phpize#>./configure#>make#>make install
PHP 程式碼:
package="pdo_pgsql"extname="PDO_PGSQL"dsoname="pdo_pgsql"sapilist="apache apache2 cgi cli fcgi"depends=""priority="500"architecture="any"
PHP 程式碼:
#》 /usr/sbin/php5-modconf apache2
ok 一切就緒
PHP 程式碼:
#》apache2 -k restart
PHP 程式碼:
// Connect to an database using driver invocation$host='xxxx.xxxx.com';$port='5433';$dbname='test';$user='xxxxxx';$password='xxxxxxxx';//$cc = "host=$host,dbname=$dbname,port=$port";$dsn = "pgsql:host=$host port=$port dbname=$dbname user=$user password=$password";try {$dbh = new PDO($dsn, $user, $password);} catch (PDOException $e) {echo 'Connection failed: ' . $e->getMessage();}$sql='select * from cpjcsj';foreach ($dbh->query($sql) as $row) {print $row['cpdm']." ";print $row['cpdh'] . " ";print $row['cpmc'] . " ";}?>
好了,在你的瀏覽器上輸入
你是否看到你資料庫中的資料了
祝賀你!!!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-940459/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 在Debian上安裝freeswitch
- 在Debian 9 (Stretch)安裝Dotclear
- Centos下安裝FastDFS及Nginx模組CentOSASTNginx
- pdo_pgsql.so安裝SQL
- Debian安裝MySQLMySql
- Debian Docker 安裝Docker
- 在 Debian 上安裝 IntelliJ IDEA 筆記(含 JDK 的安裝)IntelliJIdea筆記JDK
- python 模組安裝Python
- PyMySQL模組安裝MySql
- Python模組安裝Python
- debian安裝和解除安裝vmware
- Nginx為已安裝nginx動態新增模組Nginx
- Linux Debian安裝教程Linux
- 在debian 12 中安裝virtualbox擴充套件包套件
- 在 Debian 和 Ubuntu 上安裝 Cutefish 可愛魚Ubuntu
- php 安裝zip模組PHP
- Python安裝selenium模組Python
- windows 安裝 Pillow 模組Windows
- virtualbox 安裝 debian12
- Python表格處理模組xlrd在Anaconda中的安裝Python
- python 安裝模組的方法Python
- pip 命令安裝模組包
- python openssl模組如何安裝?Python
- pip進行模組安裝
- Debian9(Stretch) 下編譯安裝LNMP環境編譯LNMP
- Debian9 (Stretch) 下編譯安裝 LNMP 環境編譯LNMP
- Python模組、第三方模組安裝、模組匯入教程Python
- 在 Debian 64 位上安裝 wkhtmltopdf 時遇到的問題HTML
- Ubuntu 20.04 安裝 pdo_mysql 擴充套件UbuntuMySql套件
- 安裝PHP之PDO_MYSQL擴充套件PHPMySql套件
- Debian9安裝配置CaddyServerServer
- Debian11系統安裝
- Debian 11 “bullseye” 安裝筆記筆記
- 在Windows下為PHP安裝redis擴充套件WindowsPHPRedis套件
- debian 9.4 安裝教程:linux系統debian9.4圖文安裝教程Linux
- 模組的釋出和安裝
- nodejs檢查已安裝模組NodeJS
- Mac 編譯安裝 PHPRedis 模組Mac編譯PHPRedis
- Python安裝模組有哪些方法?Python