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
|
|
|
|
2014-01-07 13:18:17 +00:00
|
|
|
;; Copyright (C) 2009-2014 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-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.
|
2012-02-18 16:26:02 +00:00
|
|
|
;; (see also ob-sqlite.el)
|
2009-08-01 20:00:37 +00:00
|
|
|
;;
|
|
|
|
;; 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
|
|
|
;;
|
2013-02-05 15:50:50 +00:00
|
|
|
;; Header args used:
|
|
|
|
;; - engine
|
|
|
|
;; - cmdline
|
|
|
|
;; - dbhost
|
|
|
|
;; - dbuser
|
|
|
|
;; - dbpassword
|
|
|
|
;; - database
|
|
|
|
;; - colnames (default, nil, means "yes")
|
|
|
|
;; - result-params
|
|
|
|
;; - out-file
|
|
|
|
;; The following are used but not really implemented for SQL:
|
|
|
|
;; - colname-names
|
|
|
|
;; - rownames
|
|
|
|
;; - rowname-names
|
2009-08-02 01:05:18 +00:00
|
|
|
;;
|
|
|
|
;; TODO:
|
|
|
|
;;
|
|
|
|
;; - support for sessions
|
|
|
|
;; - support for more engines (currently only supports mysql)
|
|
|
|
;; - what's a reasonable way to drop table data into SQL?
|
2012-03-19 20:38:12 +00:00
|
|
|
;;
|
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))
|
2012-10-02 09:19:29 +00:00
|
|
|
(declare-function orgtbl-to-csv "org-table" (table params))
|
|
|
|
(declare-function org-table-to-lisp "org-table" (&optional txt))
|
2009-08-01 20:00:37 +00:00
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:sql '())
|
|
|
|
|
2013-02-05 15:50:50 +00:00
|
|
|
(defconst org-babel-header-args:sql
|
|
|
|
'((engine . :any)
|
|
|
|
(out-file . :any)
|
|
|
|
(dbhost . :any)
|
|
|
|
(dbuser . :any)
|
|
|
|
(dbpassword . :any)
|
|
|
|
(database . :any))
|
|
|
|
"SQL-specific header arguments.")
|
2011-10-26 12:19:54 +00:00
|
|
|
|
2010-12-01 02:32:01 +00:00
|
|
|
(defun org-babel-expand-body:sql (body params)
|
|
|
|
"Expand BODY according to the values of PARAMS."
|
|
|
|
(org-babel-sql-expand-vars
|
|
|
|
body (mapcar #'cdr (org-babel-get-header params :var))))
|
|
|
|
|
2013-02-05 15:50:50 +00:00
|
|
|
(defun dbstring-mysql (host user password database)
|
|
|
|
"Make MySQL cmd line args for database connection. Pass nil to omit that arg."
|
|
|
|
(combine-and-quote-strings
|
|
|
|
(remq nil
|
|
|
|
(list (when host (concat "-h" host))
|
|
|
|
(when user (concat "-u" user))
|
|
|
|
(when password (concat "-p" password))
|
|
|
|
(when database (concat "-D" database))))))
|
|
|
|
|
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)))
|
2013-02-05 15:50:50 +00:00
|
|
|
(dbhost (cdr (assoc :dbhost params)))
|
|
|
|
(dbuser (cdr (assoc :dbuser params)))
|
|
|
|
(dbpassword (cdr (assoc :dbpassword params)))
|
|
|
|
(database (cdr (assoc :database params)))
|
2009-08-02 01:05:18 +00:00
|
|
|
(engine (cdr (assoc :engine params)))
|
2013-02-05 15:50:50 +00:00
|
|
|
(colnames-p (not (equal "no" (cdr (assoc :colnames 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-")))
|
2010-12-21 17:33:37 +00:00
|
|
|
(header-delim "")
|
2009-08-02 01:05:18 +00:00
|
|
|
(command (case (intern engine)
|
2013-03-19 20:51:42 +00:00
|
|
|
('dbi (format "dbish --batch %s < %s | sed '%s' > %s"
|
2012-05-17 01:26:56 +00:00
|
|
|
(or cmdline "")
|
|
|
|
(org-babel-process-file-name in-file)
|
2013-03-19 20:51:42 +00:00
|
|
|
"/^+/d;s/^\|//;s/(NULL)/ /g;$d"
|
2012-05-17 01:26:56 +00:00
|
|
|
(org-babel-process-file-name out-file)))
|
2012-03-19 20:38:12 +00:00
|
|
|
('monetdb (format "mclient -f tab %s < %s > %s"
|
|
|
|
(or cmdline "")
|
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
(org-babel-process-file-name out-file)))
|
2010-12-05 14:23:59 +00:00
|
|
|
('msosql (format "osql %s -s \"\t\" -i %s -o %s"
|
|
|
|
(or cmdline "")
|
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
(org-babel-process-file-name out-file)))
|
2013-02-05 15:50:50 +00:00
|
|
|
('mysql (format "mysql %s %s %s < %s > %s"
|
|
|
|
(dbstring-mysql dbhost dbuser dbpassword database)
|
|
|
|
(if colnames-p "" "-N")
|
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-12-21 17:33:37 +00:00
|
|
|
('postgresql (format
|
2013-12-01 18:06:10 +00:00
|
|
|
"psql --set=\"ON_ERROR_STOP=1\" -A -P footer=off -F \"\t\" -f %s -o %s %s"
|
2012-08-11 17:10:44 +00:00
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
(org-babel-process-file-name out-file)
|
|
|
|
(or cmdline "")))
|
2012-08-13 03:59:44 +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
|
2012-05-17 01:26:56 +00:00
|
|
|
(insert
|
|
|
|
(case (intern engine)
|
|
|
|
('dbi "/format partbox\n")
|
|
|
|
(t ""))
|
|
|
|
(org-babel-expand-body:sql body params)))
|
2009-08-02 01:05:18 +00:00
|
|
|
(message command)
|
2013-02-09 21:18:24 +00:00
|
|
|
(org-babel-eval command "")
|
2012-11-19 01:02:09 +00:00
|
|
|
(org-babel-result-cond result-params
|
|
|
|
(with-temp-buffer
|
2011-10-19 18:07:39 +00:00
|
|
|
(progn (insert-file-contents-literally out-file) (buffer-string)))
|
2010-12-21 17:33:37 +00:00
|
|
|
(with-temp-buffer
|
2013-02-24 08:15:02 +00:00
|
|
|
(cond
|
|
|
|
((or (eq (intern engine) 'mysql)
|
2013-03-20 06:46:53 +00:00
|
|
|
(eq (intern engine) 'dbi)
|
2013-02-24 08:15:02 +00:00
|
|
|
(eq (intern engine) 'postgresql))
|
|
|
|
;; Add header row delimiter after column-names header in first line
|
2013-02-05 15:50:50 +00:00
|
|
|
(cond
|
|
|
|
(colnames-p
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents out-file)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(forward-line 1)
|
|
|
|
(insert "-\n")
|
|
|
|
(setq header-delim "-")
|
2013-02-24 08:15:02 +00:00
|
|
|
(write-file out-file)))))
|
2013-02-05 15:50:50 +00:00
|
|
|
(t
|
2013-02-24 08:15:02 +00:00
|
|
|
;; Need to figure out the delimiter for the header row
|
2013-02-05 15:50:50 +00:00
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents out-file)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(when (re-search-forward "^\\(-+\\)[^-]" nil t)
|
|
|
|
(setq header-delim (match-string-no-properties 1)))
|
|
|
|
(goto-char (point-max))
|
|
|
|
(forward-char -1)
|
|
|
|
(while (looking-at "\n")
|
|
|
|
(delete-char 1)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(forward-char -1))
|
2013-02-24 08:15:02 +00:00
|
|
|
(write-file out-file))))
|
2011-10-18 16:15:04 +00:00
|
|
|
(org-table-import out-file '(16))
|
|
|
|
(org-babel-reassemble-table
|
|
|
|
(mapcar (lambda (x)
|
|
|
|
(if (string= (car x) header-delim)
|
|
|
|
'hline
|
|
|
|
x))
|
|
|
|
(org-table-to-lisp))
|
|
|
|
(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
|
|
|
|
2010-12-01 02:32:01 +00:00
|
|
|
(defun org-babel-sql-expand-vars (body vars)
|
|
|
|
"Expand the variables held in VARS in BODY."
|
|
|
|
(mapc
|
|
|
|
(lambda (pair)
|
|
|
|
(setq body
|
|
|
|
(replace-regexp-in-string
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(format "\$%s" (car pair)) ;FIXME: "\$" == "$"!
|
|
|
|
(let ((val (cdr pair)))
|
|
|
|
(if (listp val)
|
|
|
|
(let ((data-file (org-babel-temp-file "sql-data-")))
|
|
|
|
(with-temp-file data-file
|
|
|
|
(insert (orgtbl-to-csv
|
|
|
|
val '(:fmt (lambda (el) (if (stringp el)
|
|
|
|
el
|
|
|
|
(format "%S" el)))))))
|
|
|
|
data-file)
|
|
|
|
(if (stringp val) val (format "%S" val))))
|
2010-12-01 02:32:01 +00:00
|
|
|
body)))
|
|
|
|
vars)
|
|
|
|
body)
|
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."
|
2012-08-13 03:59:44 +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
|
|
|
|
2011-08-15 18:04:38 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-sql.el ends here
|