On 11/3/06, Rob Hudson <[EMAIL PROTECTED]> wrote: > > I don't know of an easy way to get MySQL data into SQLite. Does anyone > know?
The easiest way I can think of would be to use the serializers; serialize the contents of the MySQL database, and deserialize it into SQLite. Caveats: 1) There is not 'serialize all' function at the moment, so you'll need to write one. 2) I don't know that the serializers have been fully put through their paces for large scale import/export, so you might get a few hiccoughs along the way. I've been fiddling around this area of late with a view to getting test fixtures working, so if you go down this path and find bugs/encounter difficulties, I'd be interested in hearing about them. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

