私が抱えている問題をデバッグできるように、実行する SQL を Korma に出力させようとしていますが、ドキュメントは as-sql 関数の使用方法について非常に簡潔です。Korma に INSERT クエリの SQL を出力させる方法の例を誰か教えてもらえますか?
質問する
1422 次
2 に答える
12
から: http://sqlkorma.com/api/0.3.0/korma.core.html
dry-run
(dry-run & body)
Wrap around a set of queries to print to the console all SQL that would
be run and return dummy values instead of executing them.
于 2013-03-19T19:44:29.340 に答える
8
SQLクエリを文字列として取得したい場合は、sql-only
(println
(sql-only
(select users)))
于 2014-01-01T15:30:17.067 に答える