2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-sql.el --- org-babel functions for sql evaluation
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
|
2009-08-01 20:00:37 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
2010-11-07 13:52:14 +00:00
|
|
|
;; Version: 7.3
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-08-01 20:00:37 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-08-01 20:00:37 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2009-08-01 20:00:37 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:32:35 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-08-01 20:00:37 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating sql source code.
|
|
|
|
;;
|
|
|
|
;; SQL is somewhat unique in that there are many different engines for
|
|
|
|
;; the evaluation of sql (Mysql, PostgreSQL, etc...), so much of this
|
|
|
|
;; file will have to be implemented engine by engine.
|
|
|
|
;;
|
|
|
|
;; Also SQL evaluation generally takes place inside of a database.
|
2009-08-02 01:05:18 +00:00
|
|
|
;;
|
|
|
|
;; For now lets just allow a generic ':cmdline' header argument.
|
|
|
|
;;
|
|
|
|
;; TODO:
|
|
|
|
;;
|
|
|
|
;; - support for sessions
|
|
|
|
;; - add more useful header arguments (user, passwd, database, etc...)
|
|
|
|
;; - support for more engines (currently only supports mysql)
|
|
|
|
;; - what's a reasonable way to drop table data into SQL?
|
|
|
|
;;
|
2009-08-01 20:00:37 +00:00
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2010-07-03 02:21:31 +00:00
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
|
|
|
|
(declare-function org-table-import "org-table" (file arg))
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:sql '())
|
|
|
|
|
2009-08-01 20:00:37 +00:00
|
|
|
(defun org-babel-execute:sql (body params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of Sql code with Babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2010-10-21 11:52:24 +00:00
|
|
|
(let* ((result-params (cdr (assoc :result-params params)))
|
2009-08-02 01:05:18 +00:00
|
|
|
(cmdline (cdr (assoc :cmdline params)))
|
|
|
|
(engine (cdr (assoc :engine params)))
|
2010-08-25 20:43:07 +00:00
|
|
|
(in-file (org-babel-temp-file "sql-in-"))
|
2009-08-02 01:05:18 +00:00
|
|
|
(out-file (or (cdr (assoc :out-file params))
|
2010-08-25 20:43:07 +00:00
|
|
|
(org-babel-temp-file "sql-out-")))
|
2009-08-02 01:05:18 +00:00
|
|
|
(command (case (intern engine)
|
|
|
|
('mysql (format "mysql %s -e \"source %s\" > %s"
|
2010-09-22 20:40:14 +00:00
|
|
|
(or cmdline "")
|
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
(org-babel-process-file-name out-file)))
|
2010-09-17 17:06:45 +00:00
|
|
|
('postgresql (format "psql -A -P footer=off -F \"\t\" -f %s -o %s %s"
|
2010-09-22 20:40:14 +00:00
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
(org-babel-process-file-name out-file)
|
|
|
|
(or cmdline "")))
|
2010-07-03 02:21:31 +00:00
|
|
|
(t (error "no support for the %s sql engine" engine)))))
|
2010-04-16 05:21:56 +00:00
|
|
|
(with-temp-file in-file
|
2010-10-21 11:36:02 +00:00
|
|
|
(insert (org-babel-expand-body:generic body params)))
|
2009-08-02 01:05:18 +00:00
|
|
|
(message command)
|
|
|
|
(shell-command command)
|
|
|
|
(with-temp-buffer
|
|
|
|
(org-table-import out-file nil)
|
2010-04-19 01:06:34 +00:00
|
|
|
(org-babel-reassemble-table
|
|
|
|
(org-table-to-lisp)
|
2010-10-21 11:52:24 +00:00
|
|
|
(org-babel-pick-name (cdr (assoc :colname-names params))
|
|
|
|
(cdr (assoc :colnames params)))
|
|
|
|
(org-babel-pick-name (cdr (assoc :rowname-names params))
|
|
|
|
(cdr (assoc :rownames params)))))))
|
2010-04-19 01:06:34 +00:00
|
|
|
|
2009-08-01 20:00:37 +00:00
|
|
|
|
|
|
|
(defun org-babel-prep-session:sql (session params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Raise an error because Sql sessions aren't implemented."
|
2009-08-02 01:05:18 +00:00
|
|
|
(error "sql sessions not yet implemented"))
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-sql)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
|
|
|
;; arch-tag: a43ff944-6de1-4566-a83c-626814e3dad2
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-sql.el ends here
|