gpt4 book ai didi

clojure - 只需从 ClojureQL 的 disj 生成 SQL!连接!和更新!职能

转载 作者:行者123 更新时间:2023-12-01 15:16:39 25 4
gpt4 key购买 nike

有没有办法只从 ClojureQL 的 disj 生成 sql 查询!连接!和更新!函数,而不是直接执行它们?

最佳答案

不,这些方法是直接执行各自准备好的语句。它们都很基础。对于 conj!update-in! ,看format调用 conj-rowsupdate-vals您可以在 internal 中找到的函数命名空间:

 (format "INSERT INTO %s %s VALUES (%s)"
(to-tablename table) columns template)

(format "UPDATE %s SET %s WHERE %s"
(to-tablename table) columns where)

对于 disj! , ClojureQL 正在使用 clojure.java.jdbc图书馆 delete-rows功能,其中包含:
  (format "DELETE FROM %s WHERE %s"
(as-identifier table) where)

所以基本上 disj!获得使用能力 java.jdbcwith-naming-strategywith-quoted-identifiers表名的宏,而另一个则没有。

关于clojure - 只需从 ClojureQL 的 disj 生成 SQL!连接!和更新!职能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7335377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com