@phoenix-plugin-registry/brackets-sql-connector
v0.6.0
Published
Browse Databases and execute commands directly from the editor. Opens views/procedures/functions as documents. Supports MySQL, MS SQL Server and PostgreSQL. Requires NPM to be installed.
Downloads
3
Readme
brackets-sql-connector
Connect to your databases directly from brackets. Browser the schema with an right panel and be able to execute sql directly from the editor.
NPM Install
If you get errors in the installation it's probably related to the NPM install. Maybe you don't have Node Package Manager installed or maybe the extension is not being able to access it properly.
The workaround is to get the modules from the command line.
Use Brackets menu Help -> Show Extension Folder
, go to brackets-sql-connector/node
folder and open it on the prompt/command line.
On the prompt execute npm install
You should see the modules being installed and will be good to go =)
If it still doesn't work, check the Full Package install bellow.
Features
- V 0.6.0 SQL Query Hints starting to work the basic expected (need to enable by preference files -> sqlHints = true [default to false])
- V 0.5.0 (and latters) Supports MySQL, MS SQL Server(>=2005) and PostgreSQL
- Browser Panel (shows tables, fields, views, functions and procedures)
- Run SQL Commands from editor (Alt+Enter execute current selecion or current open document)
- Result Sets Panel with log viewer
- Create and store multiple server connections (settings are not per project, same server can be used on any project)
- Multiple connections at once (but only one active for all editor)
- Store modification scripts from each server
- Status Bar Menu For Connect/Disconnect and change Active Editor Connection
- Store server settings in the brackets system preference file, not the root folder of your projects, so no worry about uploading your credentials to your git repo.
- Connections are not per project. They are even maintained connected on project switch.
- Auto Install of dependecies
Getting Started
Requirements
NPM -> https://nodejs.org/en/download/ (Make sure you install WITH Node Package Manager)
Node Package Manager is required since version 0.5.4!! Npm is used to install the dependencies required to connect to each sql engine. This was added because of problems with large files on the brackets extension registry.
Default Install
- On Brackets Open Extension Manager by clicking the building-blocky icon on the right side of Brackets;
- Search for SQL Browser or SQL Connector;
- Click Install;
- Click the SQL Connector icon (database with gears) on the right toolbar to open the browser panel;
- Wait the Install process on the status bar until it's says 'Not Connected'
- To open browser panel click on the Database With Gear icon on the right tool bar
- To open the quick menu 'right click' on the database icon or click on the status bar indicator
Auto Installation of Dependencies
Did the automatic installation of dependencies when you first start. At the time of installation commands are not available, the status bar shows "Installing...", the plugin icon is highlighted in orange.
Brackets registry editor sometimes doesn't handle large uploads and I wasn't able to update the version of the extension.
So, if you have NPM installed we try to install the required modules automatic for you =)
Alternative Install - Full Package
If still having problems with NPM install you can download the full package and extract it to the brackects extension folder.
Full package download: http://alemonteiro.com.br/downloads/brackets-sql-connector.zip
Executing from editor
Shortcuts:
* (Ctrl-Alt-Enter / Cmd-Alt-Enter) execute current text selection or current active document;
- On the bottom panel should be a green connection icon with yout server name in front of it.
- When you hit Alt-Enter 1. If there's any text select it will try to run it (in any type of file) 2. If no text is select then only SQL Documents will be executed
Stored Modifications
- There's a setting for saving executed SQLs that makes changes to the database incluing insert, update, delete, alter, change, remove, drop, create and modify
- Saved modifications are stored by server, not by project
- You can delete an saved modification
SQL Hinting
Disabled by default and working only .sql files for now, enabled by preferences file: "alemonteiro.bracketsSqlConnector.sqlHints": true
Reload brackets after making disabling/enabling preferences.
If enabled hinting will cache the sql reference available for the engine (current only MySQL), the list of table names from the current connected database, and the field names for the viewed tables on the browser or used in a statement inside the current .sql file;
Hints for
Basic sql commands like SELECT, ALTER, UPTADE and etc
Tables names after an table command (like one of the aboves and FROM, JOIN, DELETE and etc)
Fields names when using table alias or tables name prefix
MySQL Reference Functions with basic description
DataBase Compare
In version 0.5.9 it will only strike tables that doesn't exist on that server.
You must connect to both servers before starting the compare.
Restrictions / Not Implemented stuff / Buggy
- Only one connection can be used at a time for executing editor querys. In the future it will be one per editor.
- Only one database can be viewer per server setup. If you need multiple databases on the same server, create multiples server for now.
- No SSL support yet
- The Browser panel hides the second editor scroll bar. (This panel is an "fix" cause brackets doesn't have API for side panels yet).
Contributions And Attributions
Those fabulous icons are given by freekpik: http://freepik.com
MySQL Server Connections are made possible by https://www.npmjs.com/package/mysql
MS SQL Server Connections are made possible by https://www.npmjs.com/package/mssql
PG SQL Server Connections are made possible by https://www.npmjs.com/package/pg
Auto Install by @IgorNovozhilov
Notes for developers
This repo does not include required node modules! For extension developers, please run
npm install
in the /node folder.
TODO
- Use pg and mssql connection pools
- Configurable one connection and result sets per editor
- Interface to config default extension settings
- Compare table fields and properties
- Allow connection without pre-selected database
- Add portuguese translation
Release Notes
v 0.6.0
- Added Trusted Connection and Instance Name support for MS SQL Server
- Added context menu from extension icon on the right panel
- Added initial database tables compare
- Improved experimental sql query hinting
- Hints for basic sql commands like SELECT, ALTER, UPTADE and etc
- Hints for tables names after an table command (like one of the aboves and FROM, JOIN, DELETE and etc)
- Hints for fields names when using table alias or tables name prefix ()
- Hints for MySQL Functions with basic description
Bug Fixes
- Context Menu Log and Result Set functions not working
- Removed default 'dark' style from server menu and result panel
v 0.5.8
Bug Fixes
- Menu closing when on sub-menu hover
v 0.5.7
Bug Fixes
- Menu not closing on focus out
- 'Execute Current Selection' being shown when no connection is made but there's text selected
v 0.5.6
- Reorganized menu with sub-menus
- Added Clear Log and Clear Result Panes commands
v 0.5.5
- Indicator status label will go back to server name 10 seconds after displaying last query result or error
- Added time and server on each result set panel
- Added server and number of modifications on modifications tab
- Added 'table-striped' style to tables for default styling
- Changed log from list to table
- Compiled connection images state inside only one
- Removed some unused images and css styles
v 0.5.4
- Added auto install of dependencies
Bug Fixes
- Removed custom colors and let the style be made by brackets.
v 0.5.3
Bug Fixes
- Assumed default styles from brackets (all colors and background-colors from the extension css was removed and added the default 'panel' and 'dark' classes)
v 0.5.2
Bug Fixes
- Added max-height to result panel
v 0.5.1
- Started using connection pool for mysql
Bug Fixes
- Fixed showing Settings Dialog when connection error occured.
- Fixed auto reconnecting even if there was not active connection last time.
- Fixed show full modification script not showing sql (dates and paths are ugly yet tho)
v 0.5.0
- Added PostreSQL support
- Added SHOW Create e ALTER for Views
- Added view full modification script
Bug Fixes
- Fixed MySQL Views showing as tables on browser
v 0.4.2
- Added minimal sql formatting for viewing MySQL Views/Functions/Stored Procedures that have no indentention
- Fixed pop menu closing without executing action on windows
v 0.4.1
- Added context menu for refreshing browser itens and disconnecting from server
Bug Fixes
- Fixed duplicating saved modification
- Fixed indicator stuck at "Executing..." after running updates
v 0.4.0
- Added save modifications support
- Added preferences option to connect to last connection on brackets startup (no interface for it yet tho)
Bug Fixes
- Pop menu not closing when losing focus fixed
- Stopped trying to load children of columns on browser panel
- Added 'drop' as modification script
v 0.3.4
- Adopted brackets extension toolbar icon guidelines: https://github.com/adobe/brackets/wiki/Extension-Icon-Guidelines
- Made result set and log text selectable
Bug Fixes
- Not showing number of fetched rows on bottom indicator after query error
- Querying not executing if "Confirm modifications" was set
v 0.3.3
Bug Fixes
- Fixed execute from editor not working
v 0.3.2
Bug Fixes
- Fixed to tool bar icon not showing
- Fixed pop menu not showing when no setup existed
- Fixed test connection not working unless server settings was saved
v 0.3.1
- Added default port for MS SQL Server (1433)
Bug Fixes
- Browser panel not opening from pop menu
- Indicator Stauts keep saying is connected after Disconnect All
- No editor connection after disconnect
v 0.3.0
- Added MS SQL Server support
- Show view/procedure/function code in editor when selecting it from browser panel
- Better re-establish last connections handling (not perfect tho)
- Added Open/Close Browser Panel on Menu
- Lots of code refactoring
- Fixed minor bugs
- Improved connected server style
v 0.2.0
- Fixed lots of bugs on interface due to last time renaming
v 0.1.0
- Probably some bugs =x
- Should disconnect from server before closing brackets