Releases: cosminadrianpopescu/vim-sql-workbench
Releases · cosminadrianpopescu/vim-sql-workbench
8.2.2
- better handling of the temporary files
- bug fix: the settings file of
SQL Workbench/J
would be overriden if thesqlwbconsole
process would get killed - bug fix: when changing the profile, the autocomplete options would not change
- fixed the background run
- dbexplorer: now the references is based on the generated report
- added support for
wb-profiles.properties
file - added support for master password
SWSqlExecuteSelected
now supports ranges- minimum version of
SQL Workbench/J
is now 128
8.2.1
8.2
- added the
SWInclude
command - added an alternate delimiter when executting an sql
- when doing
desc <table>
, the columns are displayed before indexes now
(issue #29) - when switching to the results buffer automatically, do a
keepalt
before
(issue #36) - when doing
SWInclude
from an unconnected buffer, give a proper error
message (issue #35)
8.1
- fixed documentation issues
- added the
CtrlPSW
command (will open CtrlP with the SW profiles) - added the
CtrlPClearSWCache
command (will parse profiles from scratch
when opening CtrlP) - fixed the spaces in profiles name (CtrlP will fail if there was a space in
the profile name or in the group name) - switch back the autocomplete to
<C-x><C-o>
for compatibility with
YouCompleteMe
- fixed case sensitiviness in the column names in the result set (will not
filter or hide columns because of it) - fixed quote issue in the profile names (having a single quote in a profile
name would breakCtrlP
and any profiles completion)
8.0.1
8.0
- for autocomplete, added all fields
- for autocomplete, in fields insert, added the db type of the field
- for autocomplete, fixed several bugs (now it's working also for subqueries)
- for autocomplete, improved the caching
- for autocomplete, for insert, in the fields part, once a field is inserted,
the next autocomplete will not return it. - added autocomplete for macros
- for autocomplete, when a subquery is found, is returned as
subquery
,
instead of#ALIAS#
in the completion menu - added the possibility to cache several
wbschemaexports
- added the possibility to follow all the references of a resultset (which
rows is the current row referecing and which rows from other tables are
referencing the current row): seeSWSqlReferences
andSWSqlReferencedBy
- added the possibility to fetch the references tree only until a certain
level - for filtering and hiding columns, a new query is sent to the database now
- when in an sql buffer, on an insert, if you are in the fields part, you can
see the corresponding value and when on a value in the values part, you can
see the corresponding column (see SWSqlMatch) - now, you can execute macros just like a query (so no shortcut for
SWSqlExecuteMacro
); you can do<leader>c-<space>
on a macro and is going
to be interpreted correctly - you can now get the sql behind a macro (see `SWSqlGetMacroSql)
- you can choose now to send to the server the macro
sql
query rather than
the macro (seeg:sw_prefer_sql_over_macro
option) - when autocompleting the list of columns (for example for
SWSqlFilter
), now
for identical identifiers the table part will be added in paranthesis after
the column name - now, when filtering, you can directly insert the insert sql part for the
current resultset (seeSWSqlFilter
) - added the
SWSqlGenerateInsert
command, which will generate an insert which
will be coppied in the clipboard - commands removed:
SWSqlExecuteMacro
,SWSqlShowOnlyColumn
,
SWSqlForeignKey
,SWSqlFilterColumn
,SWSqlUnfilterColumn
,
SWSqlRemoveAllFilters
- commands added:
SWSqlReferences
,SWSqlReferencedBy
,SWSqlFilter
,
SWSqlUnfilter
,SWSqlGenerateInsert
,SWSqlGetMacroSql
,
SWSqlInsertMatch
- added
dbext
comparison
7.1.2
7.1.1
7.1
7.0
- profiles are automatically parsed
- revamped autocomplete: no more commands needed (just set the report option,
see theschema report
section from the documentation) - based tables metadata on the schema report generated by
WbSchemaReport
- added the
report
anduse-report
option to the profiles - added events in the sql buffer (
new_instance
andprofile_changed
) - added the possibility to share a buffer connection (see
SWSqlBufferShareConnection
) - added the possibility to go to the reference source in a result set (see the
SWSqlForeignKey
command) - removed the
SWSqlAutocomplete...
commands (not necessary anymore) - in the db explorer added references tree (see
Referenced by
and
References
options) - added the
<leader><c-space>
shortcut in the result set window (will
refresh the currently selected result set) - solved issue #20
- merged pull request #19