Bill Harris <[email protected]> writes: > I've gotten v 7.01h to work on Debian Stable and XP for R, elisp, and > sh, but I can't figure out how to make it work for SQLite. I did enable > SQLite as one of the languages, but, when I execute the following > section, I get "No org-babel-execute function for Sqlite!": > > #+BEGIN_SRC Sqlite > sqlite3 sqlite/db.sqlite > select * from table; > #+END_SRC
I found a workaround #+begin_src sh :results replace sqlite3 sqlite/db.sqlite 'select * from table;' #+end_src but it would surely be nice to be able to use the SQLite connection directly. Bill -- Bill Harris http://makingsense.facilitatedsystems.com/ Facilitated Systems Everett, WA 98208 USA http://www.facilitatedsystems.com/ phone: +1 425 374-1845 _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. [email protected] http://lists.gnu.org/mailman/listinfo/emacs-orgmode
