First things first, before continuing any further, it’s always a good idea to check ApexSQL What’s supported and Requirements page just to verify if this extension is actually what you’re looking for, does it do the job, and to see what are the minimum system requirements that have to be met for the application to run smoothly.
It’s recommended to have the latest Visual Studio Code installed and also to keep the program always up-to-date. If you’re running the nightly Insiders build of Visual Studio Code, there is no guarantee that the extension will work properly because the extension is not being tested on any nightly builds.
Visual Studio Code itself is a lightweight application and adding ApexSQL Database Power Tools for VS Code extension to it does not affect its performance at all. So, don’t let the size fool you. The extension’s download size of > 100MB is due to its necessary components that ensure smooth operation and no additional download of any third-party software.
Once going through the requirements is done, it’s time to increase the power of Visual Studio Code by installing ApexSQL Database Power Tools for VS Code extension.
The easiest way to install and manage the VS Code extension is from the Visual Studio Code Marketplace. Go to the Extensions view by clicking on the Extensions icon in the Activity Bar on the left side of Visual Studio Code.
In the search box, start typing the name of the VS Code extension and ApexSQL Database Power Tools for VS Code should appear at the very top of search results:
Select the extension by clicking on it to display the extension’s details page on the right where you can learn more about it:
Switch over to Feature Contributions page to see the extension’s additions to Visual Studio Code such as settings, commands, and keyboard shortcuts:
The last page, Changelog represents extension repository CHANGELOG AKA release notes. This page describes features, enhancements, and changes made to the VS Code extension:
Back to the installation, to add the VS Code extension to host application, simply click the Install button right below the five-star rating and download count in Extensions view. Once the installation is complete, an information message will be shown in the lower right corner:
When installed, there will be a new ApexSQL extension icon in the Activity Bar at the bottom:
If for some reason you are not able to access the Marketplace within Visual Studio Code, let’s say computer’s Internet access goes through a proxy server and you don’t want to configure the proxy server. Then, another way of installing the VS Code extension is downloading the VSIX installation file from the ApexSQL site and installing it manually.
Head over to ApexSQL Downloads page and scroll down until you find ApexSQL Database Power Tools for VS Code under the For Developers section, and click Free tool to download the installation file:
Fill out the Download form on the next page, make sure to check “I have read and accepted the
”, and click Submit to initiate the download.Choose the desired location where the file should be saved and click Save:
Next, fire up Visual Studio Code and go to the Install from VSIX command from the Extensions view command drop-down menu:
In the newly opened window, navigate to where the installation file was previously saved, select it and click Install:
In a matter of seconds, the installation will be completed and the same information message will be shown in the lower right corner as when installing it from the Marketplace.
Bear in mind that when the VS Code extension is either upgraded or deleted, the user is prompted to reload the host application in the information message on the bottom right as shown below:
Note: Visual Studio Code checks for extension updates and installs them automatically. After an update of the VS Code extension, you might be prompted to reload the host application as described above.
Before using any of the VS Code extension’s features and functionalities, a connection to a server should be established first.
The very first time, users can add a server by going to ApexSQL extension icon in the Activity Bar and clicking the Add server button:
In the newly opened Connect to server tab on the right, enter server connection parameters and click Connect:
Checking Save credentials in the connection dialog before establishing a connection will save server connection parameters making the server available in ApexSQL server explorer between sessions without a need for re-entering credentials. This is recommended for frequently used servers as it will save you a lot of typing and don’t worry – the password gets encrypted so no one can view it in plain text.
This example used a local instance of MySQL with server name specified as “localhost“ but feel free to enter the full name or IP address of the server host and appropriate TCP/IP port.
For the credentials, use the correct name and password of the user to connect with and when Connect is clicked, an information message will appear saying that the connection was successful:
Back to the ApexSQL server explorer, the newly added server will appear. Use the Connect to server button (plus sign in) to open a new connection dialog and add more servers to the list when needed:
If a connection to a server fails after it has been successfully added previously, it’s most likely because the password for the user has expired. In such a case, there’s no need to re-add the instance again, just right-click it in ApexSQL server explorer and choose Edit connection. Enter new credentials and click Connect to save changes:
A connection can be established to MySQL and MariaDB servers choosing from the two methods under the Type drop-down menu in the connection dialog:
There is also an Advanced option in the connection dialog, on the left of the Connect button that is used for configuring SSL and SSH for establishing an encrypted link between a server and a client.
In the connection dialog, when the Advanced option is clicked it will expand the connection options and an option for configuring and adding server using SSH (Secure Shell) from the VS Code extension will be available as shown below:
Make sure to fill out all the required information and know that the connection will fail if SSH is not available:
It is recommended that an SSH key file is also used. Check the Use SSH key file option and provide the following:
Once everything is set, hit the Connect button and the new instance will be added to the list of servers.
Switch over to the SSL tab for connection options related to establishing an SSL (Secure Sockets Layer) connection. Same as described in the previous example, the connection will fail if SSL is not available:
SSL parameters are:
Once these are specified, test the connection by clicking the Connect button. If everything is in order, the instance will appear in the list of servers.
Once the ApexSQL server explorer is populated with servers and databases, it’s time to start writing and executing MySQL and MariaDB queries.
From ApexSQL server explorer, right-click on a database or server and choose New query from the context menu:
The new SQL editor tab will be opened. Write or paste some code, right-click anywhere in the query window, and select Execute query from the menu or use the Execute button:
If this is a SELECT query, the results of the query appear in the query Results (spreadsheet-like grid) pane on the bottom:
If you are manipulating data using an INSERT, UPDATE, and DELETE, the Messages tab displays a summary of executed statements for the current session, including general status information and error if any:
If there is a syntax error in the executed script, an appropriate message will be returned referring to the manual that corresponds to the server version for the right syntax, and at which line the error occurs.
Besides opening a new query, there is also Select limit 1000 command in ApexSQL server explorer that opens a new query editor with SELECT * FROM LIMIT 1000 script snippet for the selected object (table or view) and displays query results:
First introduced in version 2020 R2 of the VS Code extension, the Objects search feature allows users to locate MySQL and MariaDB objects in databases containing the specified keyword, including system objects.
To initiate Object search, right-click an instance or a database from ApexSQL server explorer and choose the Object search option:
An Object search tab will be opened in which users can choose the targeted server and database of the search scope. Furthermore, the types of objects that should be included in the search can be selected on the right.
Once the search scope is set up, simply type or paste the search phrase in the Search phrase box, and click Find or hit the Enter key to perform a search in the database:
Clicking any objects from the results set under the Name column will jump to that object in ApexSQL server explorer.
Wouldn’t it be nice if there was a way to export query results? Well, there is. Query results can be exported into several standard formats. Look for the export icons in the upper right corner of the query Results pane and click one of them to save query results as:
file formats in that order from left to right:
Clicking any of those icons will open the Save As dialog in which two things should be specified: the file name and where it should be saved on the computer:
A notification will be shown upon successful export to any of the available formats. Clicking the Show option will open the previously chosen location in file explorer:
This query result is saved as an Excel worksheet and when opened, it will be filled in by following the order of appearance of Query results:
If the executed batch contains two or more SELECT statements, each SELECT statement will have its separate pane within the query Results and the results can be exported individually:
This feature enables users to generate DDL and DML scripts for objects in a database.
Right-click any object within ApexSQL server explorer and choose the available DDL or DML command:
This action will open a new SQL editor and generate code for selected operation:
DDL options are:
Create and drop commands are available for databases, tables, views, procedures, functions, indexes, and triggers.
DML options are:
DDL commands are available for objects that have data residing in database tables.
To display newly created objects in a database, use the Refresh command in ApexSQL server explorer:
The FAQs page has answers to some frequently asked questions about ApexSQL Database Power Tools for VS Code extension, so check those to see additional product information.
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. 使用条款 隐私 Cookie Preference Center