fukamachi / sxql

An SQL generator for Common Lisp.
BSD 3-Clause "New" or "Revised" License
363 stars 31 forks source link

Add multiple rows insertion with `INSERT INTO`. #74

Closed fukamachi closed 1 year ago

fukamachi commented 1 year ago

Examples:

(insert-into :table
  (:col1 :col2)
  '((1 2) (3 4) (5 6)))

(insert-into :table
  (:col1 :col2)
  (loop repeat 5 for i from 0
        collect (list i (1+ i))))