squelch.git
7 years agoOpens and closes the JDBC connection for each command
Chris Jaekl [Thu, 13 Oct 2016 11:42:11 +0000 (20:42 +0900)]
Opens and closes the JDBC connection for each command

Instead of holding the connection open for the duration of the application,
open a fresh connection for each command, and close it immediately after the
command completes.  This may reduce the risk of having connections hang around
for a while, if the JVM terminates unexpectedly (e.g., if the ssh session gets
killed and the console goes away).

7 years agoVersion 0.1.
Chris Jaekl [Fri, 24 Jun 2016 10:28:08 +0000 (19:28 +0900)]
Version 0.1.

7 years agoAdd "Describe" command, with support for describing both (a) specific table(s) and...
Chris Jaekl [Wed, 22 Jun 2016 12:38:50 +0000 (21:38 +0900)]
Add "Describe" command, with support for describing both (a) specific table(s) and for listing all tables.

7 years agoselect queries now work, and print tabular output.
Chris Jaekl [Sun, 12 Jun 2016 13:01:06 +0000 (22:01 +0900)]
select queries now work, and print tabular output.
There is support in the output code for CSV formatting as well, but I still need to add a UI feature to enable it.

7 years agoRefactor tabular output for eventual re-use printing table metadata.
Chris Jaekl [Sun, 12 Jun 2016 11:01:17 +0000 (20:01 +0900)]
Refactor tabular output for eventual re-use printing table metadata.
Note that this is not yet complete; tabular output is currently broken.

7 years agoAdd DbDriver, with support for a few popular JDBC drivers.
Chris Jaekl [Sat, 11 Jun 2016 14:18:10 +0000 (23:18 +0900)]
Add DbDriver, with support for a few popular JDBC drivers.

7 years agoInitial commit
Chris Jaekl [Sat, 11 Jun 2016 08:54:23 +0000 (17:54 +0900)]
Initial commit