標籤:
在 mac 下,可以利用 homebrew 直接安裝 PostgreSQL:
brew install postgresql -v
稍等片刻,PostgreSQL 就安裝完成。接下來就是初始資料庫,在終端執行一下命令,初始配置 PostgreSQL:
initdb /usr/local/var/postgres -E utf8
上面指定 "/usr/local/var/postgres" 為 PostgreSQL 的配置資料存放目錄,並且設定資料庫資料編碼是 utf8,更多配置資訊可以 "initdb --help" 查看。
設成開機啟動 PostgreSQL:
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgentslaunchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
啟動 PostgreSQL:
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
關閉 PostgreSQL:
pg_ctl -D /usr/local/var/postgres stop -s -m fast
建立一個 PostgreSQL 使用者
createuser username -P#Enter password for new role:#Enter it again:
上面的 username 是使用者名稱,斷行符號輸入 2 次使用者密碼後即使用者建立完成。更多使用者建立資訊可以 "createuser --help" 查看。
建立資料庫
createdb dbname -O username -E UTF8 -e
上面建立了一個名為 dbname 的資料庫,並指定 username 為改資料庫的擁有者(owner),資料庫的編碼(encoding)是 UTF8,參數 "-e" 是指把資料庫執行操作的命令顯示出來。
更多資料庫建立資訊可以 "createdb --help" 查看。
串連資料庫
psql -U username -d dbname -h 127.0.0.1
PostgreSQL 資料庫操作
顯示已建立的資料庫:
\l
在不串連進 PostgreSQL 資料庫的情況下,也可以在終端上查看顯示已建立的列表:
psql -l
串連資料庫
\c dbname
顯示資料庫表
\d
建立一個名為 test 的表
CREATE TABLE test(id int, text VARCHAR(50));
插入一條記錄
INSERT INTO test(id, text) VALUES(1, ‘sdfsfsfsdfsdfdf‘);
查詢記錄
SELECT * FROM test WHERE id = 1;
更新記錄
UPDATE test SET text = ‘aaaaaaaaaaaaa‘ WHERE id = 1;
刪除指定的記錄
DELETE FROM test WHERE id = 1;
刪除表
DROP TABLE test;
刪除資料庫
DROP DATABASE dbname;
或者利用 dropdb 指令,在終端上刪除資料庫
dropdb -U user dbname
下面是自用的 PostgreSQL 的 php 操作類:
<?php define("HOST", "127.0.0.1");define("PORT", 5432);define("DBNAME", "dbname");define("USER", "user");define("PASSWORD", "password"); class Ext_Pgsql { //單例 private static $instance = null; private $conn = null; private function __construct() { $this->conn = pg_connect("host=" . HOST . " port=" . PORT . " dbname=" . DBNAME . " user=" . USER . " password=" . PASSWORD) or die(‘Connect Failed : ‘. pg_last_error()); } public function __destruct() { @pg_close($this->conn); } /** * 單例模式 * @param $name */ public static function getInstance() { if ( ! self::$instance ) { self::$instance = new self(); } return self::$instance; } /** * 擷取記錄 */ public function fetchRow($sql) { $ret = array(); $rs = pg_query($this->conn, $sql); $ret = pg_fetch_all($rs); if ( ! is_array($ret) ) { return array(); } return $ret; } /** * 執行指令 * @param string $sql */ public function query($sql) { $result = pg_query($this->conn, $sql); if ( ! $result ) die("SQL : {$sql} " . pg_last_error()); } /** * 擷取一條記錄 */ public function fetchOne($sql) { $ret = array(); $rs = pg_query($this->conn, $sql); $ret = pg_fetch_all($rs); if ( ! is_array($ret) ) { return array(); } return current($ret); } } ?>
一些問題
PostgreSQL 9.2 版本升級到 9.3.1 版本後的資料相容問題
串連 PostgreSQL 時報以下錯誤:
psql: could not connect to server: Connection refusedIs the server running on host "127.0.0.1" and acceptingTCP/IP connections on port 5432?
開啟 PostgreSQL 的服務日誌發現是 PostgreSQL 9.2 版本升級到 9.3.1 版本後的資料相容問題:
tail -f /usr/local/var/postgres/server.logFATAL: database files are incompatible with serverDETAIL: The data directory was initialized by PostgreSQL version 9.2, which is not compatible with this version 9.3.1.
對於版本的資料升級問題,PostgreSQL 提供了 pg_upgrade 來做版本後的資料移轉,用法如下:
pg_upgrade -b 舊版本的bin目錄 -B 新版本的bin目錄 -d 舊版本的資料目錄 -D 新版本的資料目錄 [其他選項...]
資料移轉前,記得先關閉 PostgreSQL 的 postmaster 服務,不然會報以下錯誤:
There seems to be a postmaster servicing the new cluster.Please shutdown that postmaster and try again.Failure, exiting
利用 pg_ctl 關閉 postmaster:
pg_ctl -D /usr/local/var/postgres stop
Mac 下也可以這樣關閉:
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
首先備份就版本的資料(預設是在 /usr/local/var/postgres 目錄):
mv /usr/local/var/postgres /usr/local/var/postgres.old
利用 initdb 命令再初始一個資料庫檔案:
initdb /usr/local/var/postgres -E utf8 --locale=zh_CN.UTF-8
NOTE:記得加 "--locale=zh_CN.UTF-8" 選項,不然會報以下錯誤:
lc_collate cluster values do not match: old "zh_CN.UTF-8", new "en_US.UTF-8"
最後運行 pg_upgrade 進行資料移轉:
pg_upgrade -b /usr/local/Cellar/postgresql/9.2.4/bin/ -B /usr/local/Cellar/postgresql/9.3.1/bin/ -d /usr/local/var/postgres.old -D /usr/local/var/postgres -v
Mac 下 PostgreSQL 的安裝與使用