Skip to content

Latest commit

 

History

History

pgsql

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

PostgreSQL

安裝 -- Postgresql in MSYS2

$ pacman -S mingw-w64-x86_64-postgresql

創建資料庫

$ mkdir pgdata
$ initdb -D ./pgdata
$ pg_ctl -D ./pgdata -l logfile start
waiting for server to start.... done
server started

執行 C 程式存取資料庫

進行手動操作

詳細操作

離開

最後可用 pg_ctl stop 離開

$ pg_ctl stop -D ./pgdata
waiting for server to shut down.... done
server stopped