如何使用sqlite-simple执行INSERT预处理语句?

时间:2016-02-05 18:02:27

标签: sqlite haskell

sqlite-simple能够创建预准备语句,但我无法弄清楚如何将它们与不返回结果的指令一起使用。那就是:

main = do
  db <- open "test.db"
  let a = 1
  let b = 2
  withStatement db "INSERT INTO test VALUES (?, ?)" $ \stmt -> do
    bind stmt (a, b)
    ???
    reset stmt

一个适合&#34;的API。在???nextRow需要返回数据。那么,准备好的语句如何返回没有应该使用的结果?

0 个答案:

没有答案