VincentSteil / World_Crisis_DB

Creating a database for world crises similar to what IMDB is for movies that can be navigated in a similar manner. Parsed and accessed through python and initially stored in XML and validated against an XSD. The XML is converted in MySQL later on.
1 stars 0 forks source link

Adapting the import/export facility for MySQL #30

Closed mduban closed 11 years ago

mduban commented 11 years ago

Changing the XML import/export facility to accomodate for MySQL now.

mduban commented 11 years ago

I am done with this. I will start creating unit tests and making it look pretty with assertions/comments and all that tomorrow.

mduban commented 11 years ago

I used one table for each relation: Crises, Persons, Organizations, orgKinds, personsKinds, crisesKinds and use dictionaries or lists of lists for many to many relationships.

mduban commented 11 years ago

Done.