如何调用queryAll方法

时间:2017-03-16 14:54:38

标签: python sqlobject

我正在查看SQL statements下指定的说明,我被困在这一行:

rows = connection.queryAll(query)

我们从哪里获得此连接对象?因为我确信这不是从这个陈述中获得的对象

connection = connectionForURI(connection_string)

我也试过像这样使用dbconnection:

select = Select(['name', 'AVG(salary)'], staticTables=['employees'], groupBy='name')
query = dbconnection.sqlrepr(select)

但dbconnection没有queryAll方法。

1 个答案:

答案 0 :(得分:0)

sealed正是您正在寻找的连接对象。它has方法connection = connectionForURI(connection_string)