On 11/4/05, wrb <[EMAIL PROTECTED]> wrote: > What's the syntax to change or populate ForeignKey and ManyToMany > fields?
See the documentation: http://www.djangoproject.com/documentation/db_api/#relationships-joins http://www.djangoproject.com/documentation/models/many_to_one/ http://www.djangoproject.com/documentation/models/many_to_many/ > What's the best way to bulk load 100s or 1000s of classes which have a > variety of ForeignKeyFields and ManyToManyFields? The most efficient way is to do it in your database directly, using something like PostgreSQL's "COPY" statement. If you're not worried about efficiency, just use the API to insert one record at a time. Adrian -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org