[Django]Djangoが出力しているSQLを見る方法
- November 10th, 2009
- Posted in Python
- Write comment
from django.db import connection print connection.queries
このとき、「DEBUG = True」(settingsで設定)になっている必要がある。
Popularity: 3% [?]
from django.db import connection print connection.queries
このとき、「DEBUG = True」(settingsで設定)になっている必要がある。
Popularity: 3% [?]
No comments yet.