emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric Schulte <schulte.eric@gmail.com>
To: Joe Bogner <joebogner@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Calling org babel to each row in a table
Date: Sun, 30 Jun 2013 17:33:14 -0600	[thread overview]
Message-ID: <87txkfjgfo.fsf@gmail.com> (raw)
In-Reply-To: CAEtzV1byY5U6E7YRvsrnDmWB+pngU2sb-bJj+mDObtFvXZypew@mail.gmail.com

Joe Bogner <joebogner@gmail.com> writes:

> I often need to transform a table or list of values into a block of text.
> For example, if I have a list of 4 files that I want to generate a SQL
> script for.
>
> After hunting around, this is the best I came up with:
>
> #+name: table
> | File |
> | a    |
> | b    |
> | c    |
> | d    |
>
> #+name: template
> #+begin_src org :results verbatim :var name="abc"
> DROP TABLE $name
>
> CREATE TABLE $name (name varchar(100))
>
> BULK INSERT $name FROM '\\1.1.1.1\$name.txt' ...
> #+end_src
>
> #+name: apply-template
> #+begin_src emacs-lisp :results silent :var table=()
> (let (result-table)
>     (dolist (line (cdr table))
>         (setq result-table (cons (concat "#+call: template(\"" (car line)
> "\") :results raw drawer") result-table)))
>     (mapconcat 'identity (nreverse result-table) "\n"))
> #+end_src
>
> #+call: apply-template(table) :results org :exports both
>
> #+RESULTS: apply-template(table):results org :exports both
> #+BEGIN_SRC org
> #+END_SRC
>
>
>
> Is there a more straightforward method to apply this type of
> transformation? Ideally I would skip the emacs-lisp block and use some
> syntax to apply a org-babel block for each row in a table.
>
>
> It sounded similar to this:
> http://thread.gmane.org/gmane.emacs.orgmode/69326/focus=69340*, *but that
> didn't have a full example for me to build off of
>
> Is there a more straightforward to accomplish this transformation?
>

Hi Joe,

There is no way to map a code block over the rows of a table.  You could
use the `sbe' macro and a spreadsheet formula to call a code block on
multiple table cells, but the results would be inserted back into the
table.

| A       | -->A<--       |
| B       | -->B<--       |
| eric    | -->eric<--    |
| schulte | -->schulte<-- |
#+TBLFM: $2='(sbe foo (in $$1))

#+name: foo
#+begin_src emacs-lisp :var in="foo"
  (format "-->%s<--" in)
#+end_src

Possibly you could use the sbe macro to simplify the elisp code block in
your example.

Best,

>
> Thanks,
> Joe

-- 
Eric Schulte
http://cs.unm.edu/~eschulte

      reply	other threads:[~2013-07-01  0:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-30 15:25 Calling org babel to each row in a table Joe Bogner
2013-06-30 23:33 ` Eric Schulte [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87txkfjgfo.fsf@gmail.com \
    --to=schulte.eric@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=joebogner@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).