Django Book 翻译
菜单>:
TOC
返回
原文:
If youre interested, take a moment to dive into your database servers command-line client and see the database tables Django created. You can manually run the command-line client (e.g., ``psql`` for PostgreSQL) or you can run the command ``python manage.py dbshell`` , which will figure out which command-line client to run, depending on your ``DATABASE_SERVER`` setting. The latter is almost always more convenient.
翻译:
如果你有兴趣,花点时间用你的SQL客户端登录进数据库服务器看看刚才Django创建的数据表。 Django带有一个命令行工具, ``python manage.py dbshell`` 。
备注:
译者: