diff options
Diffstat (limited to 'src/clojure/contrib/sql')
-rw-r--r-- | src/clojure/contrib/sql/sql.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/sql/sql.clj b/src/clojure/contrib/sql/sql.clj index 590dcd4c..902005de 100644 --- a/src/clojure/contrib/sql/sql.clj +++ b/src/clojure/contrib/sql/sql.clj @@ -103,7 +103,7 @@ "Inserts complete rows into a table. Each row is a seq of values for each of the table's columns in order." [con table & rows] - (apply insert-values con (the-str table) nil rows)) + (apply insert-values con table nil rows)) (defmacro with-results "Executes a query and then evaluates body repeatedly with rec bound to |