Adam Russell wrote:

I have narrowed the problem down to where I am actually touching the rows. Blows up as soon as that happens.
import metakit
db=metakit.storage("db/linelists"+"09_11_2003"+".mk",1)#OK
vw=db.view("linelists")#OK
m=db.getas("09_11_2003"+'_map[_H:I,_R:I]')#OK
vw=vw.hash(m,1)#OK
for r in vw:#OK
print r.mid,r.syndrome,r.date_visit,r.age_group,r.gender,r.zip,r.event,r.disposition,r.temperature,r.dob,r.provider_id,r.mem_rec,r.event_id,r.icd9,r.tests,r.payer#This dies?

Just for grins try this


m = db.view("_map")

since you alread have a map in the database or the correct type. There is no need to create two hashes.

Brian

_____________________________________________
Metakit mailing list  -  [EMAIL PROTECTED]
http://www.equi4.com/mailman/listinfo/metakit

Reply via email to