0

我有一个 WebTest,我正在使用 django-webtest 对内存中的数据库运行。

# settings.py
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
    }
}

有一段代码我无法通过 ORM 运行,它的运行速度是直接 SQL 的 5 倍。是的,我熟悉 select_related、batch_select 和 prefetch_related。这就是我的 SQL 代码在我看来是如何执行的。

db = MySQLdb.connect(host=settings.DATABASES['default']['HOST'],
                user=settings.DATABASES['default']['USER'],
                passwd=settings.DATABASES['default']['PASSWORD'],
                db=settings.DATABASES['default']['NAME'])
            cursor = db.cursor(MySQLdb.cursors.DictCursor)
            cursor.execute("SELECT something FROM sometable WHERE somecondition = 'somevariable';")
            count_queryset = cursor.fetchall()
            cursor.close()
            db.close()

当我的测试脚本在视图中到达这一点时,它会因以下错误而窒息:

File "/srv/reports/views.py", line 473, in my_view
    db=settings.DATABASES['default']['NAME'])
  File "build/bdist.macosx-10.8-x86_64/egg/MySQLdb/__init__.py", line 81, in Connect
    return Connection(*args, **kwargs)
  File "build/bdist.macosx-10.8-x86_64/egg/MySQLdb/connections.py", line 187, in __init__
    super(Connection, self).__init__(*args, **kwargs2)
OperationalError: (1049, "Unknown database ':memory:'")

我不确定为什么内存中的 sqlite3 数据库可以通过 ORM 很好地工作,但在我使用 MySQLdb 时却不行。如果我也通过 unittest.TestCase 运行代码,也会发生同样的事情。有任何想法吗?

4

1 回答 1

0

正如 alecxe 在评论中指出的那样,您不能将 MySQLdb 连接和游标与 sqlite3 数据库一起使用。这是我快速而肮脏的解决方法,它可能不适合您将在生产中使用的任何代码。我用等效的 sqlite3 替换了我的连接字符串:

import sqlite3
db = sqlite3.connect("settings.DATABASES['default']['HOST']")
cursor = db.cursor() # No direct equivalent to MySQLdb.cursors.DictCursor
cursor.execute("SELECT something FROM sometable WHERE somecondition = 'somevariable';")
...
于 2013-08-26T18:14:26.800 回答