Arne Claassen
Arne Claassen
I have a number of tables with foreign key constraints. When I try to run `mg reset` it fails because the drop needs to either happen in reverse order of...
This commit changes connection behavior from storing the database connection name to using the database alias mapped by SQL Explorer instead. The reason for this change is two-fold: 1) Views...
If I have a query (either saved or in the playground) that runs longer than 30 seconds, the app closes the connection. It doesn't seem to be a django or...
While looking through the connection logic for my attempt to address #455, I noticed that the name used to get a connection is the django connection name rather than the...
My use case requires dynamic database connections to databases not managed by django. These databases are created on on demand, so i can't enumerate them in settings. I know this...
Based onthe work of #14 and #16, implement standard piping and input redirection from Bash in Josh.Shell
Currently any input line is considered to be a single command, which makes it impossible to implement piping. Once #14 is implemented and we have input and output streams, we...
Currently Ctrl-C is trapped (as it should for shells). But it would be nice it that trap could be optionally defeated so Copy can continue to work. Bonus: When that...
The command handler should have an optional `description` key to be shown in the command list and a optional `man` key specifying a callback when someone calls `help []`
Current arguments to commands are just determined on whitespace separation. Should respect quoting and {space} to treat an arg with a space as a single argument. Should really expose argument...