Home

Awesome

License: MIT

SingleStore Driver for SQLTools

logo

A Visual Studio Code extension which extends the SQLTools extension to work with SingleStore.

Features

Installation

Launch VS Code Quick Open (Ctrl+P), paste the following command, and press Enter.

ext install singlestore.sqltools-singlestore-driver

Alternatively, you can install this extension in the Visual Studio Code IDE from the Extensions tab. Press Ctrl+Shift+X by searching for @tag:sqltools singlestore.

Usage

The following examples perform different tasks using the driver. Refer to SQLTools documentation for more information.

Create a Connection

221791339-c18f8539-8f01-45db-9c7d-94019923e869

Note: The Show records default limit parameter specifies the maximum number of rows that are shown in the result.

View tables and views

221792568-a1345ca9-d44d-4e36-85a1-4311cc99327d

Run a SQL query

221792831-3f30c99b-ce27-4e0a-bb6e-6810718f6b10

View and Edit Functions and Procedures

221793272-31b14ad2-f9a1-49a8-8bff-cd7700eeae88

Note: When creating a function or a procedure, you must change the delimiter to ensure that the function or procedure definition is correctly passed to the server as a single statement. The default delimiter is a semicolon (;). A problem arises when creating functions or procedures because they use semicolons as statement delimiters within the function body. Therefore, you must change the delimiter setting before creating your function or procedure, and then set it back to a semicolon after the alternate delimiter is no longer needed. Therefore, you must change the delimiter to something else (for example //) before creating your function or procedure, and then revert it to a semicolon (;) afterwards. The DELIMITER commands must be on independent lines.

Here's an example:

DELIMITER //

CREATE OR REPLACE PROCEDURE courses_sp (course_code TEXT, section_number INT, number_students INT) AS
  DECLARE
    code TEXT = UCASE(course_code);
    num_students INT = number_students + 1;
  BEGIN
    INSERT INTO courses VALUES (code, section_number, num_students);
END //

DELIMITER ;

Support and Feedback

If you have any questions, want to report a bug, or have a feature request please open an issue.

Setup development environment

  1. Clone this repository, and open it in Visual Studio Code.
  2. Run npm install to install all dependencies.
  3. Run npm run watch.
  4. Open the extension.ts file, and press F5. This opens a new Visual Studio Code window with a development version of the driver extension loaded.