5
這是使用psycopg2進行查詢的最佳模式?Psycopg2:在python中使用with ...作爲
這一個:
# get_connection is a function that returns a connection to the db.
with get_connection() as conn:
with conn.cursor() as cursor:
cursor.execute("SELECT * FROM test_table")
or simply this:
with get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM test_table")
這已實施。版本2.5(2013年4月)是第一個使用上下文管理器的版本,因此現在允許使用「塊」。 – nofinator