我正试图在luminus
,h2
,hugsql
和clojure
中首次执行此操作。
insert
语句在连接到h2
数据库的SQL客户端中输入时工作正常,但代码失败。它似乎与WHERE id = :id
查询的get-assessor
子句有关,但无法找到实现此目的的方法。
在档案./resources/sql/queries.sql
-- :name get-assessor :? :1
-- :doc retrieve a assessor given the id.
SELECT * FROM assessores
WHERE id = :id
-- :name save-assessor! :n
-- :doc creates new assessor
INSERT INTO assessores
(first_name,
last_name,
email,
phone,
address1,
address2,
post_code,
post_code_city,
birth_date,
tax_number,
to_buy,
to_sell,
to_career,
first_message,
is_active)
VALUES (:first_name,
:last_name,
:email,
:phone,
:address1,
:address2,
:post_code,
:post_code_city,
:birth_date,
:tax_number,
:to_buy,
:to_sell,
:to_career,
:first_message,
:is_active)
在档案中:./test/db/core.clj
(deftest test-assessores
(jdbc/with-db-transaction [t-conn *db*]
(jdbc/db-set-rollback-only! t-conn)
(let [timestamp (java.util.Date.)]
(is (= 1 (db/save-assessor!
t-conn
{:first_name "Bob"
:last_name "Singer"
:email "lpe@gmail.com"
:phone "888232418"
:address1 "10 st"
:address2 "VNC"
:post_code "9990-990"
:post_code_city "Cer"
:birth_date "1962-06-06"
:tax_number 204559449
:to_buy true
:to_sell false
:to_career false
:first_message "how to buy?"
:is_active true}
{:connection t-conn})))
(is (=
{:first_name "Bob"
:last_name "Singer"
:email "lpe@gmail.com"
:phone "888232418"
:address1 "10 st"
:address2 "VNC"
:post_code "9990-990"
:post_code_city "Cer"
:birth_date "1962-06-06"
:tax_number 204559449
:to_buy true
:to_sell false
:to_career false
:first_message "how to buy?"
:is_active true}
(-> (db/get-assessor t-conn {})
(first)
(select-keys [:first_name ])))))))
返回(截断)的消息是:
org.h2.jdbc.JdbcSQLException: Method is only allowed for a query. Use execute or executeUpdate instead of executeQuery; SQL statement:
INSERT INTO assessores
(first_name,
last_name,
email,
phone,
address1,
address2,
post_code,
post_code_city,
birth_date,
tax_number,
to_buy,
to_sell,
to_career,
first_message,
is_active)
VALUES ( ? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ) [90002-192]
SQL: "INSERT INTO assessores\n\t(first_name,\n\tlast_name,\n\temail,\n\tphone,\n\taddress1,\n\taddress2,\n\tpost_code,\n\tpost_code_city,\n\tbirth_date,\n\ttax_number,\n\tto_buy,\n\tto_sell,\n\tto_career,\n\tfirst_message,\n\tis_active)\nVALUES ( ? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? ,\n\t? )"
SQLState: "90002"
errorCode: 90002
originalMessage: "Method is only allowed for a query. Use execute or executeUpdate instead of executeQuery"
ERROR in (test-assessores) (core.clj:4617)
clojure.lang.ExceptionInfo: Parameter Mismatch: :id parameter data not found.
Testing orio.test.handler
(...)
Ran 2 tests containing 4 assertions.
0 failures, 2 errors.
Tests failed.
如何解决这个问题?
答案 0 :(得分:0)
InterlockedCompareExchange(&gf, 1, 0)
应该是
-- :name save-assessor! :n
请参阅:https://www.hugsql.org/#command
命令默认为-- :name save-assessor! :! :n
,表示它是非修改查询。对于插入/更新语句,定义中应使用:?
。
编辑:
在给出了更多信息之后 - 看起来:!
正在寻找(get-assessor)
的参数(正如您在HUGSql文件中的定义所示。
我会在该文件中创建一个新查询。像:id
(get-first-assessor)
然后在测试中将
-- :name get-first-assessor :? :1
-- :doc get the first assessor in the system, ordred by id
SELECT * FROM assessores
ORDER BY id ASC LIMIT 1
的电话改为(get-assessor t-conn {})