Stefan Klöckner is a user on octodon.social. You can follow them or interact with them if you have an account anywhere in the fediverse. If you don't, you can sign up here.
Stefan Klöckner @stefan

command line client displays sql results in compatible format. 😍

· Web · 0 · 1

@stefan

#+BEGIN_SRC emacs-lisp
(require 'ob-sql)
(setq dbpw "password")
#+END_SRC
#+BEGIN_SRC sql :engine mysql :database db :dbhost localhost :dbuser root :dbpassword (print dbpw) :exports results :cmdline --protocol=tcp
show databases
#+END_SRC