簡體   English   中英

PyAMF DatabaseError:“數據庫不支持此查詢。” 返回User對象時

[英]PyAMF DatabaseError: 'This query is not supported by the database.' when returning the User object

這是我得到的錯誤:

ERROR    2011-11-19 04:19:55,441 django.py:164] Error encoding AMF request
Traceback (most recent call last):
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/remoting/gateway/django.py", line 161, in __call__
    logger=self.logger, timezone_offset=timezone_offset)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/remoting/__init__.py", line 676, in encode
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/remoting/__init__.py", line 520, in _write_body
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/remoting/__init__.py", line 486, in _encode_body
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf0.py", line 657, in writeAMF3
    self.context.getAMF3Encoder(self).writeElement(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf3.py", line 1456, in writeObject
    self.writeElement(value)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf3.py", line 1298, in writeList
    [self.writeElement(x) for x in n]
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 358, in __call__
    ret = self.func(data, encoder=self.encoder)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/adapters/_django_db_models_base.py", line 276, in writeDjangoObject
    encoder.writeObject(referenced_object)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf3.py", line 1468, in writeObject
    self.writeElement(value)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 358, in __call__
    ret = self.func(data, encoder=self.encoder)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/adapters/_django_db_models_base.py", line 276, in writeDjangoObject
    encoder.writeObject(referenced_object)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf3.py", line 1468, in writeObject
    self.writeElement(value)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 499, in writeElement
    func(data)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/codec.py", line 358, in __call__
    ret = self.func(data, encoder=self.encoder)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/adapters/_django_db_models_base.py", line 276, in writeDjangoObject
    encoder.writeObject(referenced_object)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/amf3.py", line 1447, in writeObject
    attrs = alias.getEncodableAttributes(obj, codec=self)
  File "/Library/Python/2.6/site-packages/PyAMF-0.6.1-py2.6-macosx-10.6-universal.egg/pyamf/adapters/_django_db_models_base.py", line 173, in getEncodableAttributes
    attrs[name] = [x for x in getattr(obj, name).all()]
  File "/Users/bryce/Documents/Aptana Studio 3 Workspace/django-blog/django/db/models/query.py", line 107, in _result_iter
    self._fill_cache()
  File "/Users/bryce/Documents/Aptana Studio 3 Workspace/django-blog/django/db/models/query.py", line 774, in _fill_cache
    self._result_cache.append(self._iter.next())
  File "/Users/bryce/Documents/Aptana Studio 3 Workspace/django-blog/django/db/models/query.py", line 275, in iterator
    for row in compiler.results_iter():
  File "/Users/bryce/Documents/Aptana Studio 3 Workspace/DennysBE/djangotoolbox/db/basecompiler.py", line 225, in results_iter
    self.check_query()
  File "/Users/bryce/Documents/Aptana Studio 3 Workspace/DennysBE/djangotoolbox/db/basecompiler.py", line 273, in check_query
    raise DatabaseError('This query is not supported by the database.')
DatabaseError: This query is not supported by the database.

這是我解決此問題的模型:

class ChallengeAct(models.Model):
    challenge = models.ForeignKey(Challenge, blank=True, null=True)
    user = models.ForeignKey(User, blank=True, null=True)
    start_date = models.DateTimeField(blank=True, null=True)
    progress_value = models.IntegerField(default=0)
    earned_coupon = models.ForeignKey(EarnedCoupon, blank=True, null=True)

這是導致錯誤的方法:

def foo_bar(request):
    user = request.user
    c = ChallengeAct()
    c.challenge = Challenge.objects.get(id=1)
    c.start_date = datetime.now()
    c.progress_value = 1
    c.user = user
    c.save()

#    Here is where I set the user to null to avoid the DatabaseError
    c.user = None
    return [c]

有趣的是,我需要先設置c.user = None然后再返回它,這樣我就不會得到DatabaseError: This query is not supported by the database. 問題。

--update--我考慮得越多,獲取用戶對象就好像是pyamf和django-nonrel問題。 我猜想當pyamf試圖獲取用戶對象時,它正在使用某種類型的聯接查詢,而django-nonrel不支持這種聯接查詢。

為什么是這樣? 有辦法解決嗎?

對於用戶模型blank=True, null=True您不必必須允許blank=True, null=True 通常, django.contrib.auth.models.AnonymousUser處理匿名請求。 它可能會或可能不會解決該問題,但是值得嘗試,即:

class ChallengeAct(RewardActBase):
    user = models.ForeignKey(User)
    ....

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM