It works but not via appadmin.
If you want to import data from two tables which reference eahc other
you must to:
id_map={}
db.table.import_from_csv_file(csvfile1,id_map=id_map)
db.table.import_from_csv_file(csvfile2,id_map=id_map)
passing the same id_map makes sures the relative references are fixed.
On Sep 1, 5:48 am, Jason Brower <[email protected]> wrote:
> I have 3 tables to make a many to many relationship.
> I can export the two. But the linking table for the many to many keeps
> giving me an error of "undefined record" meaning it's trying to
> reference to something that doesnt exist. These datbases are clean when
> I start. and I am doing a direct export and import with the csv feature.
> Am I missing something or do we have some kind of bug.
> Best Regards,
> Jason Brower