Adrian Holovaty wrote: > 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
Ok.... I figured out how to create the primary object one at atime with ForiegnKeys by setting the appropriate combination of relatedclass_id and relatedclass.get_id(key__exact..) calls. The problem now is with its cooresponding ManyToManyFields (These are not needed at create time) The reference guide and tutorial refer to using class.add_relatedclass(...) calls but that fails when I try to use these. python says: AttributeError: object has no attribute add_relatedclass I do, however, see methods for **set_relatedclass** when I dir the primary class. The documentation, to the best of my knowledge, doesn't mention how to use these methods.