목차

Install on Debian Linux

# apt-get install python python-dev python-psycopg

우분투에서도 같은 방법으로 설치한다.

Web Framework

나중에 패키지가 포함이 되면 그때 해봐야겠다.

Tip

핸드폰으로 문자메시지 보내기

* 핸드폰으로 문자메시지 보내기

소스파일 인코딩 설정

파일의 상단에 다음과 같이 소스파일 인코딩을 설정한다.

# -*- coding: utf-8 -*-

cx_Oracle 설치

# apt-get install python2.3-dev
# wget http://prdownloads.sourceforge.net/cx-oracle/cx_Oracle-4.2.tar.gz?use_mirror=jaist
# tar xvfz cx_Oracle-4.2.tar.gz
# cd cx_Oracle-4.2
# python setup.py build
# python setup.py install
import cx_Oracle
 
# connect via SQL*Net string or by each segment in a separate argument
#connection = cx_Oracle.connect("user/password@TNS")
connection = cx_Oracle.connect("user", "password", "TNS")
 
cursor = connection.cursor()
cursor.arraysize = 50
cursor.execute("""
        select Col1, Col2, Col3
        from SomeTable
        where Col4 = :arg_1
          and Col5 between :arg_2 and :arg_3""",
        arg_1 = "VALUE",
        arg_2 = 5,
        arg_3 = 15)
for column_1, column_2, column_3 in cursor.fetchall():
    print "Values:", column_1, column_2, column_3