python 獲得 postgres 查詢結果 能夠有列名

 1 import psycopg2
 2 import psycopg2.extras
 3 
 4 conn = psycopg2.connect(database=self.dbname, user=self.username, password=self.password,  host=self.host, port=self.port)
 5 cursor = self.conn.cursor(cursor_factory=psycopg2.extras.DictCursor)
 6 sql = ""
 7 cursor.execute(sql)
 8 rows = self.cursor.fetchall()
 9 # 此時的 rows裏面的元素 爲 RowDict類型的結構,
10 for row in rows:
11     print row['某個列名']訪問

參考:http://yuanjun.me/postgresql/pythoncao-zuo-postgresql#toc_5python

在須要獲得查詢結果列名的狀況下 須要初始化 cursor的時候特別注意,添加 sql

cursor_factory=psycopg2.extras.DictCursor

如此這樣 也不影響,正常的遍歷訪問,如post

a,b,c,d = row # a,b,c,d 都爲具體的查詢值
相關文章
相關標籤/搜索