summaryrefslogtreecommitdiff
path: root/posts/2008-06-21-debug-your-dbix-class-queries.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-08-04 11:12:37 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-08-04 11:12:37 -0700
commit2d2a43f200b88627253f2906fbae87cef7c1e8ce (patch)
treec65377350d12bd1e62e0bdd58458c1044541c27b /posts/2008-06-21-debug-your-dbix-class-queries.md
parentUse Bullet list for the index. (diff)
downloadlumberjaph-2d2a43f200b88627253f2906fbae87cef7c1e8ce.tar.gz
Mass convert all posts from markdown to org.
Diffstat (limited to 'posts/2008-06-21-debug-your-dbix-class-queries.md')
-rw-r--r--posts/2008-06-21-debug-your-dbix-class-queries.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/posts/2008-06-21-debug-your-dbix-class-queries.md b/posts/2008-06-21-debug-your-dbix-class-queries.md
deleted file mode 100644
index dee84f5..0000000
--- a/posts/2008-06-21-debug-your-dbix-class-queries.md
+++ /dev/null
@@ -1,15 +0,0 @@
-If you use DBIx::Class and want to see what the SQL generated looks like, you can set the environment variable **DBIC_TRACE**.
-
-```sh
-% DBIC_TRACE=1 my_programme.pl
-```
-
-And all the SQL will be printed on **STDERR**.
-
-If you give a filename to the variable, like this
-
-```sh
-% DBIC_TRACE="1=/tmp/sql.debug"
-```
-
-all the statements will be printed in this file.