Inserts complete rows into a table. Each row is a vector of values for
each of the table's columns in order.
Inserts rows into a table with values for specified columns only. c
(defn insert-rows "Inserts complete rows into a table. Each row is a vector of values for each of the table's columns in order." [table & rows] (apply insert-values table nil rows))
Comments top
No comments for insert-rows. Log in to add a comment.