1. 먼저 psycopg2 설치 합니다.
> apt-get install python-psycopg2
2. python 구문 작성
#! /usr/bin/python2.7 import psycopg2 try: conn = psycopg2.connect("dbname='test' user='test' host='localhost' password='1'")
print "connect ok"except: print "error"
3. 실행
> python test.py
'Test Code > Linux' 카테고리의 다른 글
[Mint] Aptana Studio 3 설치 (0) | 2015.09.15 |
---|---|
[Ubuntu] 윈도우 공유폴더 마운트하기 (0) | 2015.04.07 |
[Ubuntu] 서버 한글로 설치후 영문으로 변경 (0) | 2015.03.17 |
[리눅스 명령어] ip로 컴퓨터명 알아내기 (0) | 2014.10.24 |
[리눅스] nano 에디터 설정 (0) | 2014.10.23 |