end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2008-08-24から1日間の記事一覧

postgresにバイナリデータを格納

PostgreSQLにはバイナリデータを格納する為にbytea型という独自仕様が用意されていますが、私の場合、Base64 encoding後、text型へ格納しています。 CREATE TABLE data_binary ( file_name text primary key, data text ); 次の例は、compress + base64 を行…

登録されているデータベースを一覧表示

bash-3.2$ psql -l -U postgres List of databases Name | Owner | Encoding -----------+----------+---------- EndoTest | postgres | EUC_JP postgres | postgres | EUC_JP template0 | postgres | EUC_JP template1 | postgres | EUC_JP