Release 7.3
[org-mode/org-mode-NeilSmithlineMods.git] / lisp / ob-sql.el
blob78e8a3b437799e02f5d2aaf85e83f12609c915dd
1 ;;; ob-sql.el --- org-babel functions for sql evaluation
3 ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
8 ;; Version: 7.3
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Org-Babel support for evaluating sql source code.
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.
37 ;; TODO:
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?
43 ;;
45 ;;; Code:
46 (require 'ob)
47 (eval-when-compile (require 'cl))
49 (declare-function org-table-import "org-table" (file arg))
51 (defvar org-babel-default-header-args:sql '())
53 (defun org-babel-execute:sql (body params)
54 "Execute a block of Sql code with Babel.
55 This function is called by `org-babel-execute-src-block'."
56 (let* ((result-params (cdr (assoc :result-params params)))
57 (cmdline (cdr (assoc :cmdline params)))
58 (engine (cdr (assoc :engine params)))
59 (in-file (org-babel-temp-file "sql-in-"))
60 (out-file (or (cdr (assoc :out-file params))
61 (org-babel-temp-file "sql-out-")))
62 (command (case (intern engine)
63 ('mysql (format "mysql %s -e \"source %s\" > %s"
64 (or cmdline "")
65 (org-babel-process-file-name in-file)
66 (org-babel-process-file-name out-file)))
67 ('postgresql (format "psql -A -P footer=off -F \"\t\" -f %s -o %s %s"
68 (org-babel-process-file-name in-file)
69 (org-babel-process-file-name out-file)
70 (or cmdline "")))
71 (t (error "no support for the %s sql engine" engine)))))
72 (with-temp-file in-file
73 (insert (org-babel-expand-body:generic body params)))
74 (message command)
75 (shell-command command)
76 (with-temp-buffer
77 (org-table-import out-file nil)
78 (org-babel-reassemble-table
79 (org-table-to-lisp)
80 (org-babel-pick-name (cdr (assoc :colname-names params))
81 (cdr (assoc :colnames params)))
82 (org-babel-pick-name (cdr (assoc :rowname-names params))
83 (cdr (assoc :rownames params)))))))
86 (defun org-babel-prep-session:sql (session params)
87 "Raise an error because Sql sessions aren't implemented."
88 (error "sql sessions not yet implemented"))
90 (provide 'ob-sql)
92 ;; arch-tag: a43ff944-6de1-4566-a83c-626814e3dad2
94 ;;; ob-sql.el ends here