emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Thierry Banel <tbanelwebmin@free.fr>
To: emacs-orgmode@gnu.org
Subject: Re: orgtbl-to-sqlinsert
Date: Sun, 02 Feb 2014 22:19:28 +0100	[thread overview]
Message-ID: <52EEB660.5070308@free.fr> (raw)
In-Reply-To: <m1ha8hz389.fsf@tsdye.com>

Le 02/02/2014 21:09, Thomas S. Dye a écrit :
> Aloha all,
>
> I'm expecting column names in the "foo( )" part of the INSERT statement.
>
> I've done my best to understand
> http://orgmode.org/worg/org-tutorials/multitarget-tables.org.html but
> appear to have failed.
>
> Can someone help?
>
> *** Experiment with orgtbl-sqlinsert
>
> #+name: test-table
> | one | two    |
> |-----+--------|
> |   1 | Buckle |
> |   2 | Shoe   |
> |   3 | Open   |
> |   4 | Door   |
>
> #+name: test-bed
> #+header: :var x=test-table
> #+begin_src emacs-lisp
> (require 'orgtbl-sqlinsert)
> (orgtbl-to-sqlinsert x '(:sqlname "foo" :fmt (1 "%s")))
> #+end_src
>
> #+results: test-bed
> : BEGIN TRANSACTION;
> : INSERT INTO foo(  ) VALUES ( 1 , 'Buckle' );
> : INSERT INTO foo(  ) VALUES ( 2 , 'Shoe' );
> : INSERT INTO foo(  ) VALUES ( 3 , 'Open' );
> : INSERT INTO foo(  ) VALUES ( 4 , 'Door' );
> : COMMIT;
>
> All the best,
> Tom
Hi Thomas.

I don't understand this behavior yet.
But here is a workaround:
try the   #+ORGTBL: SEND  feature:
1- Add a #+ORGTBL: SEND line
2- Add a BEGIN RECEIVE ORGTBL block
3- Type C-c C-c with cursor on the first pipe of the table

--8<--------------------------->8--
#+ORGTBL: SEND faraway orgtbl-to-sqlinsert :sqlname "foo" :fmt (1 "%s")
| one | two    |
|-----+--------|
|   1 | Buckle |
|   2 | Shoe   |
|   3 | Open   |
|   4 | Door   |

;; BEGIN RECEIVE ORGTBL faraway
BEGIN TRANSACTION;
INSERT INTO foo( one, two ) VALUES ( 1 , 'Buckle' );
INSERT INTO foo( one, two ) VALUES ( 2 , 'Shoe' );
INSERT INTO foo( one, two ) VALUES ( 3 , 'Open' );
INSERT INTO foo( one, two ) VALUES ( 4 , 'Door' );
COMMIT;
;; END RECEIVE ORGTBL faraway
--8<--------------------------->8--

  reply	other threads:[~2014-02-02 21:19 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-02 20:09 orgtbl-to-sqlinsert Thomas S. Dye
2014-02-02 21:19 ` Thierry Banel [this message]
2014-02-02 23:47   ` orgtbl-to-sqlinsert Thomas S. Dye
2014-02-04 21:18     ` orgtbl-to-sqlinsert Thierry Banel
2014-02-04 22:00       ` orgtbl-to-sqlinsert Thomas S. Dye

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=52EEB660.5070308@free.fr \
    --to=tbanelwebmin@free.fr \
    --cc=emacs-orgmode@gnu.org \
    /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).