2018-01-01から1ヶ月間の記事一覧
PostgreSQLがインストールできたので今度はPythonから実行してみる 環境 $ sw_vers ProductName: Mac OS X ProductVersion: 10.11.6 BuildVersion: 15G1611 $ python -V Python 3.4.5 :: Anaconda custom (x86_64) $ psql --version psql (PostgreSQL) 10.1 …
PostgreSQLこんなテーブルを作った create table site_categories ( id bigserial primary key, site_name varchar(200) unique, created timestamp, update timestamp ); で、途中で名前を間違えていることに気づいた。サイトのカテゴリではなくて、サイト…
初めて使う 環境 $ sw_vers ProductName: Mac OS X ProductVersion: 10.11.6 BuildVersion: 15G1611 試す $ brew install postgresql 文字コードをUTF8で初期化する(?) $ initdb /usr/local/var/postgres -E utf8 $ postgres --version postgres (Postgre…