python fdb save huge data from database to file
- by peter
I have this script
SELECT = """
select
coalesce (p.ID,'') as id,
coalesce (p.name,'') as name,
from TABLE as p
"""
self.cur.execute(SELECT)
for row in self.cur.itermap():
xml +=" <item>\n"
xml +=" <id>" + id + "</id>\n"
xml…