Hello Dhruv,

On Jun 24, 11:03 am, Dhruv Adhia <druf...@gmail.com> wrote:

> Is this what you mean?
> django-admin.py loaddata mydata.json , If so I how do I populate json file
> such large amounts of data?

The LOAD DATA was in reference too the LOAD DATA INFILE command <
http://dev.mysql.com/doc/refman/5.1/en/load-data.html > available for
MySql and was just an example.  Since you're using sqlite3 that
obviously won't be of help.  Most databases would have similar methods
for importing large amount of data.  You'd need to read up on how your
database does it if you do decide to go that route.

If you don't want to use the command line ( or some kind of client
program ) with your database then you're left with using manage.py
shell and writing a small python program to load your data.

Your program would need to load your Model, open and parse your file,
create and save instances of your model.  Opening files can be read
about in the Python documentation as well as commands that would be
useful in parsing your file ( string methods? ).  If you've been
through the Django documentation then you've seen how to work with
Django models.

Toodle-looooooooooo...........
creecode
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to