ob-sqlite: now inserts string arguments w/o quotes

* lisp/ob-sqlite.el (org-babel-sqlite-expand-vars): now inserts string
  arguments w/o quotes
This commit is contained in:
Eric Schulte 2010-07-28 07:31:39 -06:00
parent 24bb01afc8
commit 4d318e4499

View file

@ -118,7 +118,7 @@ This function is called by `org-babel-execute-src-block'."
(format "%S" el)))))))
data-file)
(make-temp-file "ob-sqlite-data"))
(format "%S" val)))
(if (stringp val) val (format "%S" val))))
(cdr pair))
body)))
vars)