用临时数据库启动django shell

前端之家收集整理的这篇文章主要介绍了用临时数据库启动django shell前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用一个临时数据库启动 django shell(就像做django测试时所做的那样)

有没有像这样的命令:

python manage.py testshell

我可以创建一堆虚假模型而不污染我的数据库

解决方法

没关系,这 blog post解释了它
>>> from django import test
>>> test.utils.setup_test_environment() # Setup the environment
>>> from django.db import connection
>>> db = connection.creation.create_test_db() # Create the test db
原文链接:https://www.f2er.com/mssql/77522.html

猜你在找的MsSQL相关文章