Skip to content

Releases: cosminadrianpopescu/vim-sql-workbench

8.2.2

19 Aug 07:31
Compare
Choose a tag to compare
  • better handling of the temporary files
  • bug fix: the settings file of SQL Workbench/J would be overriden if the sqlwbconsole 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

18 Sep 20:25
Compare
Choose a tag to compare
  • Fixed the latest problems reported in #25

Download vim-sql

8.2

18 Apr 19:24
Compare
Choose a tag to compare
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)

Download vim-sql

8.1

21 Mar 20:38
Compare
Choose a tag to compare
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 break CtrlP and any profiles completion)

Download vim-sql

8.0.1

22 Nov 17:01
Compare
Choose a tag to compare
  • small fix in the documentation

Download vim-sql

8.0

22 Nov 16:56
Compare
Choose a tag to compare
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): see SWSqlReferences and SWSqlReferencedBy
  • 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 (see g: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 (see SWSqlFilter)
  • 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

Download vim-sql

7.1.2

08 Aug 19:33
Compare
Choose a tag to compare
  • updated the doc to specify the g:sw_plugin_path variable
  • fixed the g:sw_cache variable bug declaration

Download vim-sql

7.1.1

06 Aug 19:50
Compare
Choose a tag to compare
  • renamed g:sw_autocomplete_cache_dir variable to g:sw_cache
  • fixed issue #24

Download vim-sql

7.1

31 Jul 20:04
Compare
Choose a tag to compare
7.1
  • fixed issue #23
  • added exit event for the sql buffer

Download vim-sql

7.0

27 Jul 19:33
Compare
Choose a tag to compare
7.0
  • profiles are automatically parsed
  • revamped autocomplete: no more commands needed (just set the report option,
    see the schema report section from the documentation)
  • based tables metadata on the schema report generated by WbSchemaReport
  • added the report and use-report option to the profiles
  • added events in the sql buffer (new_instance and profile_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

Download vim-sql