0

代码片段

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

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

4

1 回答 1

0

我已经想出了解决方案。

re = result.all()

于 2016-02-05T15:04:02.720 回答