psycopg2没有返回结果

时间:2013-09-30 15:53:28

标签: python postgresql psycopg2

我正在尝试使用psycopg2与我的本地机器上运行的postgresql数据库无论我尝试什么都无法返回结果。它似乎连接到数据库ok,因为如果我改变任何配置参数它会引发错误,但是,当我运行看似有效且结果有价值的查询时,我什么也得不到。

我的数据库正在运行,并且肯定有一个表格:

postgres=# \c
You are now connected to database "postgres" as user "postgres".
postgres=# select * from foos;
  name   | age 
---------+-----
 Sarah   |  23
 Michael |  35
 Alice   |  12
 James   |  20
 John    |  52
(5 rows)

我的python代码连接到这个数据库,但不管我运行什么查询,我得到None

Python 2.7.3 (default, Apr 10 2013, 06:20:15) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import psycopg2
>>> conn = psycopg2.connect("dbname='postgres' user='postgres' host='localhost'")
>>> cur = conn.cursor()
>>> print cur.execute("select * from foos;")
None
>>> print cur.execute("select * from foos")
None
>>> print cur.execute("select name from foos")
None
>>> print cur.execute("select f.name from foos f")
None

我做错了什么吗?我怎么能开始调试这个,我不知道从哪里开始,因为它连接得很好?

4 个答案:

答案 0 :(得分:17)

cursor.execute准备并执行查询但不获取任何数据,因此None是预期的返回类型。如果要检索查询结果,则必须使用fetch*方法之一:

print cur.fetchone()

rows_to_fetch = 3
print cur.fetchmany(rows_to_fetch)

print cur.fetchall()

答案 1 :(得分:5)

注意,正如文档中所述:http://initd.org/psycopg/docs/cursor.html“游标对象是可迭代的,因此,不是在循环中显式调用fetchone(),而是可以使用对象本身”

因此,写作同样有效:

>>> cur.execute("select foo, bar from foobars")
>>> for foo, bar in cur:
....    print foo, bar

没有显式调用fetchone()。我们pythonistas应该更喜欢简洁的代码,只要它不会损害理解,并且imho,这感觉更自然。

答案 2 :(得分:4)

游标的execute()方法只是执行传递给它的SQL。然后,您有几个选项可以从光标获取响应。您可以使用fetchone()方法返回下一个结果。在第一次调用它时,您将获得第一个结果,第二次获得第二个结果,依此类推。 fetchall()方法返回所有行,可以用作迭代器。

示例:

>>> # This is an example of the fetchone() method
>>> cur.execute("select * from foos")
>>> # This call will return the first row 
>>> result = cur.fetchone()
>>> # This call will return the second row
>>> result = cur.fetchone()


>>> # This is an example of the fetchall() method
>>> cur.execute("select * from foos")
>>> results = cur.fetchall()
>>> for r in results:
...     print r
>>> # Now we'll reset the cursor by re-executing the query
>>> cur.execute("select * from foos")
>>> for r in cur.fetchall():
...     print r

答案 3 :(得分:1)

您没有阅读具有完美示例的基本文档

http://initd.org/psycopg/docs/cursor.html

>>> cur.execute("SELECT * FROM test WHERE id = %s", (3,))
>>> cur.fetchone()
(3, 42, 'bar')