Visual Studio Code SQL Server extension.
TypeScript JavaScript CSS HTML
Latest commit 104fec7 Jan 17, 2017 @anthonydresser anthonydresser committed with kevcunnane fixed coverage; fixed chrome not launching; fixed jenkins test task (#…
…611)

Merging at this fixes errors during build on Jenkins
Permalink
Failed to load latest commit information.
.vscode Copy results supports copy with headers (#386) Nov 22, 2016
images update to README.MD for version 0.1.5 (#322) Nov 11, 2016
samples Change comment for compliance (#334) Nov 11, 2016
scripts Travis CI, Coveralls, AppVeyor (#463) Dec 6, 2016
snippets drop database snippet change to prevent command failure (#317) Nov 11, 2016
src Fix/html encode display values (#604) Jan 13, 2017
syntaxes Fix statistics keyword highlighting (#610) Jan 13, 2017
tasks fixed coverage; fixed chrome not launching; fixed jenkins test task (#… Jan 17, 2017
test Feature: Progressive Messages (#591) Jan 12, 2017
typings Fixing download progress status (#557) Dec 20, 2016
.gitignore Travis CI, Coveralls, AppVeyor (#463) Dec 6, 2016
.mention-bot Added mention-bot configuration settings (#479) Dec 8, 2016
.travis.yml trying to fix builds Dec 10, 2016
.vscodeignore Merge dev to master for 0.0.7 release (#143) Oct 8, 2016
CHANGELOG.md Bump extension version to 0.2.0 (#488) Dec 9, 2016
LICENSE.txt Merge branch 'master' into dev Nov 28, 2016
README.md Remove dbo. from Peek Definition readme.md (#546) Dec 16, 2016
ThirdPartyNotices.txt update of ThirdPartyNotices.txt for sqlparser (#305) Nov 8, 2016
appveyor.yml trying to fix builds Dec 10, 2016
coverconfig.json Front end testing (#336) Nov 17, 2016
gulpfile.js Travis CI, Coveralls, AppVeyor (#463) Dec 6, 2016
install.js Slick gridwith angular2 (#7) Aug 2, 2016
issue_template.md Create issue template (#323) Nov 10, 2016
karma-test-shim.js Web app side tests (#369) Nov 21, 2016
karma.conf.js fixed coverage; fixed chrome not launching; fixed jenkins test task (#… Jan 17, 2017
npm-shrinkwrap.json Travis CI, Coveralls, AppVeyor (#463) Dec 6, 2016
package.json Fix new result pane column behavior (#582) Jan 7, 2017
tsconfig.json fixed build scripts Sep 8, 2016
tslint.json fix jslint problems and added config Jul 22, 2016

README.md

Travis CI AppVeyor Coverage Status Gitter

mssql for Visual Studio Code

Welcome to mssql preview for Visual Studio Code! An extension for developing Microsoft SQL Server, Azure SQL Database and SQL Data Warehouse everywhere with a rich set of functionalities, including:

  • Connect to Microsoft SQL Server, Azure SQL Database and SQL Data Warehouses.
  • Create and manage connection profiles and most recently used connections.
  • Write T-SQL script with IntelliSense, Go to Definition, T-SQL snippets, syntax colorizations, T-SQL error validations and GO batch separator.
  • Execute your scripts and view results in a simple to use grid.
  • Save the result to json or csv file format and view in the editor.
  • Customizable extension options including command shortcuts and more.

See the mssql extension tutorial for the step by step guide.

See the SQL developer tutorial to develop an app with C#, Java, Node.js, PHP, Python and R with SQL Server databases.

demo

What's new in 0.2.0

  • Peek Definition and Go To Definition support for Tables, Views and Stored Procedures.
    • For a query such as select * from dbo.Person you can right-click on Person and see it as a CREATE TABLE script.
    • Note: you must be connected to a database to use this feature.
  • Support for additional operating systems including Linux Mint and Elementary OS. See [Operating Systems] for the list of supported OSes.
  • Multiple improvements & fixes to the results view, Intellisense handling, and service installation notification.
  • Improved logging to the Output window. Errors and status notifications can be viewed in the SqlToolsService or MSSQL channels.
  • For a full list see the change log.

Using

  • First, install Visual Studio Code then install mssql extension by pressing F1 or ctrl+shift+p to open command palette, select Install Extension and type mssql.
  • Open an existing file with a .sql file extenion or open a new text file (ctrl+n) and change the language mode to SQL by pressing ctrl+k,m and select SQL. mssql commands and funtionalities are enabled in the SQL language mode in Visual Studioc Code editor.
  • Create a new connection profile using command palette by pressing F1, type sqlman to run MS SQL: Manage Connection Profile command. Select Create. See manage connection profiles for more information about how to create and edit connection profiles in your User Settings (settings.json) file.
  • Connect to a database by pressing F1 and type sqlcon to run MS SQL: Connnect command, then select a connection profile. You can also use a shortcut (ctrl+shift+c).
  • Write T-SQL script in the editor using IntelliSense and Snippets. Type sql in the editor to list T-SQL Snippets.
  • Execute T-SQL script or selection of statements in the script by pressing F1 and type sqlex to run MS SQL: Execute Query command. You can also use a shortcut (ctrl+shift+e). See customize shortcuts to learn about change shortcut key bindings to mssql commands.
  • View the T-SQL script execution results and messages in result view.

Commands

The extension provides several commands in the Command Palette for working with .sql files:

  • MS SQL: Connect to SQL Server, Azure SQL Database or SQL Data Warehouse using connection profiles or recent connections.
    • Create Connection Profile to create a new connection profile and connect.
  • MS SQL: Disconnect from SQL Server, Azure SQL Database or SQL Data Warehouse in the editor session.
  • MS SQL: Use Database to switch the database connection to another database within the same connected server in the editor session.
  • MS SQL: Execute Query script, T-SQL statements or batches in the editor.
  • MS SQL: Cancel Query execution in progress in the editor session.
  • MS SQL: Manage Connection Profiles
    • Create a new connection profile using command palette's step-by-step UI guide.
    • Edit user settings file (settings.json) in the editor to manually create, edit or remove connection profiles.
    • Remove an existing connection profile using command palette's step-by-step UI guide.
    • Clear Recent Connection List to clear the history of recent connections.

Options

The following Visual Studio Code settings are available for the mssql extension. These can be set in user preferences (cmd+,) or workspace settings (.vscode/settings.json). See customize options and manage connection profiles for more details.

{
    "mssql.maxRecentConnections": 5,
    "mssql.connections":[],
    "mssql.shortcuts": {
        "event.toggleResultPane": "ctrl+alt+r",
        "event.toggleMessagePane": "ctrl+alt+y",
        "event.prevGrid": "ctrl+up",
        "event.nextGrid": "ctrl+down",
        "event.copySelection": "ctrl+c",
        "event.maximizeGrid": "",
        "event.selectAll": "",
        "event.saveAsJSON": "",
        "event.saveAsCSV": ""
    },
    "mssql.messagesDefaultOpen": true,
    "mssql.logDebugInfo": false,
    "mssql.saveAsCSV": {
        "includeHeaders": true
    },
    "mssql.enableIntelliSense": true,
    "mssql.intelliSense.enableErrorChecking": true,
    "mssql.intelliSense.enableSuggestions": true,
    "mssql.intelliSense.enableQuickInfo": true,
    "mssql.intelliSense.lowerCaseSuggestions": false,
    "mssql.resultsFontFamily": "-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif",
    "mssql.resultsFontSize": 13,
    "mssql.copyRemoveNewLine" : true
}

Change Log

The current version is 0.2.0. See the change log for a detailed list of changes in each version.

Supported Operating Systems

Currently this extension supports the following operatings systems:

  • Windows (64-bit only)
  • macOS
  • Ubuntu 14.04 / Linux Mint 17 / Linux Mint 18 / Elementary OS 0.3
  • Ubuntu 16.04 / Elementary OS 0.4
  • Debian 8.2
  • CentOS 7.1 / Oracle Linux 7
  • Red Hat Enterprise Linux (RHEL)
  • Fedora 23
  • OpenSUSE 13.2

Offline Installation

The extension will download and install a required SqlToolsService package during activation. For machines with no Internet access, you can still use the extension by choosing the Install from VSIX... option in the Extension view and installing a bundled release from our Releases page. Each operating system has a .vsix file with the required service included. Pick the file for your OS, download and install to get started. We recommend you choose a full release and ignore any alpha or beta releases as these are our daily builds used in testing.

Support

Support for this extension is provided on our GitHub Issue Tracker. You can submit a bug report, a feature suggestion or participate in [discussions].

Contributing to the Extension

See the developer documentation for details on how to contribute to this extension.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Privacy Statement

The Microsoft Enterprise and Developer Privacy Statement describes the privacy statement of this software.

License

This extension is licensed under the MIT License. Please see the third-party notices file for additional copyright notices and license terms applicable to portions of the software.