1 ;;; ob-sql.el --- org-babel functions for sql evaluation
3 ;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Org-Babel support for evaluating sql source code.
27 ;; (see also ob-sqlite.el)
29 ;; SQL is somewhat unique in that there are many different engines for
30 ;; the evaluation of sql (Mysql, PostgreSQL, etc...), so much of this
31 ;; file will have to be implemented engine by engine.
33 ;; Also SQL evaluation generally takes place inside of a database.
35 ;; For now lets just allow a generic ':cmdline' header argument.
39 ;; - support for sessions
40 ;; - add more useful header arguments (user, passwd, database, etc...)
41 ;; - support for more engines (currently only supports mysql)
42 ;; - what's a reasonable way to drop table data into SQL?
47 (eval-when-compile (require 'cl
))
49 (declare-function org-table-import
"org-table" (file arg
))
50 (declare-function orgtbl-to-csv
"org-table" (TABLE PARAMS
))
52 (defvar org-babel-default-header-args
:sql
'())
54 (defvar org-babel-header-arg-names
:sql
57 (defun org-babel-expand-body:sql
(body params
)
58 "Expand BODY according to the values of PARAMS."
59 (org-babel-sql-expand-vars
60 body
(mapcar #'cdr
(org-babel-get-header params
:var
))))
62 (defun org-babel-execute:sql
(body params
)
63 "Execute a block of Sql code with Babel.
64 This function is called by `org-babel-execute-src-block'."
65 (let* ((result-params (cdr (assoc :result-params params
)))
66 (cmdline (cdr (assoc :cmdline params
)))
67 (engine (cdr (assoc :engine params
)))
68 (in-file (org-babel-temp-file "sql-in-"))
69 (out-file (or (cdr (assoc :out-file params
))
70 (org-babel-temp-file "sql-out-")))
72 (command (case (intern engine
)
73 ('msosql
(format "osql %s -s \"\t\" -i %s -o %s"
75 (org-babel-process-file-name in-file
)
76 (org-babel-process-file-name out-file
)))
77 ('mysql
(format "mysql %s < %s > %s"
79 (org-babel-process-file-name in-file
)
80 (org-babel-process-file-name out-file
)))
82 "psql -A -P footer=off -F \"\t\" -f %s -o %s %s"
83 (org-babel-process-file-name in-file
)
84 (org-babel-process-file-name out-file
)
86 (t (error "no support for the %s sql engine" engine
)))))
87 (with-temp-file in-file
88 (insert (org-babel-expand-body:sql body params
)))
90 (shell-command command
)
91 (if (or (member "scalar" result-params
)
92 (member "verbatim" result-params
)
93 (member "html" result-params
)
94 (member "code" result-params
)
95 (equal (point-min) (point-max)))
97 (progn (insert-file-contents-literally out-file
) (buffer-string)))
99 ;; need to figure out what the delimiter is for the header row
101 (insert-file-contents out-file
)
102 (goto-char (point-min))
103 (when (re-search-forward "^\\(-+\\)[^-]" nil t
)
104 (setq header-delim
(match-string-no-properties 1)))
105 (goto-char (point-max))
107 (while (looking-at "\n")
109 (goto-char (point-max))
111 (write-file out-file
))
112 (org-table-import out-file
'(16))
113 (org-babel-reassemble-table
115 (if (string= (car x
) header-delim
)
119 (org-babel-pick-name (cdr (assoc :colname-names params
))
120 (cdr (assoc :colnames params
)))
121 (org-babel-pick-name (cdr (assoc :rowname-names params
))
122 (cdr (assoc :rownames params
))))))))
124 (defun org-babel-sql-expand-vars (body vars
)
125 "Expand the variables held in VARS in BODY."
129 (replace-regexp-in-string
130 (format "\$%s" (car pair
))
134 (with-temp-file data-file
135 (insert (orgtbl-to-csv
136 val
'(:fmt
(lambda (el) (if (stringp el
)
138 (format "%S" el
)))))))
140 (org-babel-temp-file "sql-data-"))
141 (if (stringp val
) val
(format "%S" val
))))
147 (defun org-babel-prep-session:sql
(session params
)
148 "Raise an error because Sql sessions aren't implemented."
149 (error "sql sessions not yet implemented"))
155 ;;; ob-sql.el ends here