don't read sqlite output as lisp

Thanks to Michael Gauland for pointing out this bug.

* lisp/ob-sqlite.el (org-babel-sqlite-table-or-scalar): Don't read
  sqlite output as lisp.
This commit is contained in:
Eric Schulte 2013-03-10 15:34:56 -06:00
parent 731428e7a5
commit cc756ecac9
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ This function is called by `org-babel-execute-src-block'."
(mapcar (lambda (row)
(if (equal 'hline row)
'hline
(mapcar #'org-babel-read row))) result)))
(mapcar #'org-babel-string-read row))) result)))
(defun org-babel-sqlite-offset-colnames (table headers-p)
"If HEADERS-P is non-nil then offset the first row as column names."