SQHell.vim
SQHell.vim copied to clipboard
An SQL wrapper for vim
Expected:  Actual: 
`SQHexecute` doesn't work for me OS: win10 Vim: 8.1.1963 ``` "" SQLHell setup let g:sqh_connections = { \ 'default': { \ 'user': 'postgres', \ 'password': '', \ 'host': 'localhost' \}}...
Hello, My default config of mysql has an empty password. the prompt ask the password but it's not possible to write it down. With Neovim 2.3
If there is an error in the query; such as: ```sql SELECT * FROM foo LIMI 10 ``` the error is shown in the output buffer like this: ``` ERROR...
- [ ] Cursor shouldn't jump into the newly created results buffer - [ ] buffer filetype is incorrect if you use the jump list - [ ] Maybe use...
In this PR: - Fix running multiple queries through SQHExecute(File) in psql - Fix sorting when the results of multiple queries are present in psql Things to note: - The...
When we're in an SQHResult table, we should be able to run `SQHDiffAgainst live` for example. This will give us a diff of the query executed for the current connection...
Could be a potential thing to add How it should work: Call `sqhell#Export` This will proxy down to the provider of choice. We'll need to store the last query executed...
Description (what is it you've done, has anything changed?) - updated **mysql#PostBufferFormat** so it automatically deletes all lines before the expected output (everything before a line containing `+-----` for all...
As implied in [this comment](https://github.com/joereynolds/SQHell.vim/pull/44#issuecomment-350592860) I think it would be a good idea to extract all SQL query generations (even if really simple) to their own functions which would enable...