Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the bulkloader.yaml to upload raw company data into the Datastore. One of those fields is actually a reference. I shall include the models below. My question is therefore in the raw data (CSV) how to make a reference to the category. I presume I will have to generate a key at some-point or can I simply use an id that is generated when I put company data in manually through a form.

class CompanyCategory(db.Model):
    categoryname = db.StringProperty(required=False)

    def __unicode__(self):
            return u'%s' % (self.categoryname)

class Company(db.Model):
    companyurl = db.StringProperty(required=False)
    companyname = db.StringProperty(required=False)
    companydesc = db.TextProperty(required=False)
    companyaddress = db.PostalAddressProperty(required=False)
    companypostcode = db.StringProperty(required=False)
    companyemail = db.EmailProperty(required=False)
    companycountry = db.StringProperty(required=False)
    companyvalid = db.BooleanProperty()
    companyentrytime = db.DateTimeProperty(auto_now_add=True)
    companylatlong = db.GeoPtProperty()
    companycategory = db.ReferenceProperty(CompanyCategory, collection_name='compcategory')  

Here is a manual entry in the database for companycategory:

agpzfmJpb21hcGl0chcLEg9Db21wYW55Q2F0ZWdvcnkY0f0FDA
CompanyCategory: id=98001 

Now, I know what that corresponds to, an entry in my table, but how do new entries from the raw data point to the same location as this. What the best or way to do this? Thanks.

share|improve this question
Is there a better way to ask this? – Androidian May 31 '12 at 11:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.