如何从geoalchemy2查询结果中检索数据?

时间:2016-02-04 15:18:08

标签: python-2.7 sqlalchemy gis geoalchemy2

代码段

from dbinit import session
from geoalchemy2 import Geometry, func
result = session.query(func.ST_AsText('POINT(100 100)'))

如何从此result对象中检索数据?

1 个答案:

答案 0 :(得分:0)

我已经找到了解决方案。

re = result.all()