-
-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add client for SQL #511
Add client for SQL #511
Conversation
I'm still unsure about how the So, this is more of a proof-of-concept thing. |
Doh! |
Added a SQL statement with meta-command for psql to demo that Also, noticed that when stopping the REPL, the REPL process became a zombie (half-dead -- you can find it with |
This looks wonderful! You caught everything I think, all the right docs, config and files. Amazing! And great catch on the zombie process, that'd be easy to miss. The I think it didn't really play out how I wanted so now it's tech debt. I'm okay with the stdio-rt copy for now but only really because I want to completely rewrite stdio which would hopefully supersede stdio+stdio-rt, supporting everything we need from both in a nicer way. Again I refer to #500 and something I need to do eventually 🥲 For now I'm focussing on some Fennel tooling improvements to make the development nicer, but I'll get to that eventually. I'm going to merge this to develop to get it in people's hands, once again, amazing work and thank you! |
Hey @russtoku, I just wanna thank you for this! I can confirm it works with MySQL ❤️ |
@tssm , that's good news! Glad it works for you! |
A first attempt at a client for interacting with an SQL REPL to satisfy issue #432.
Although built using PostgresQL's
psql
command line utility, it should work with MySQL'smysql
, Oracle'soci
, and others. But I did not try any other.