From fa0680b9147a7ff3f6866915e65fab93703f938d Mon Sep 17 00:00:00 2001 From: lucashancock <111306378+lucashancock@users.noreply.github.com> Date: Wed, 8 Jan 2025 08:35:39 -0600 Subject: [PATCH] added ibm db2 to supported drivers in docs and readme (#1421) Co-authored-by: Lucas Hancock --- README.md | 86 +++++++++++---------- docs/src/pages/en/drivers/drivers-table.mdx | 19 ++--- 2 files changed, 54 insertions(+), 51 deletions(-) diff --git a/README.md b/README.md index 1338c0a1..64ae17b7 100644 --- a/README.md +++ b/README.md @@ -38,19 +38,20 @@ SQLTools is a set of VS Code extensions that connect to, query, and display resu The installation process is straightforward: -* Open VS Code -* Click the Extensions view (in the left bar), then search for `@tag:sqltools-driver`. -This lists all the drivers available for SQLTools. -* Install the driver for your database. This also installs the core SQLTools extension. -* Click the SQLTools icon (in the left bar) -* Create a _connection_ to your database. To do this, hover over **CONNECTIONS** in the SQLTools pane. Click the "Add New Connection" icon and choose the driver and enter the connection parameters. +- Open VS Code +- Click the Extensions view (in the left bar), then search for `@tag:sqltools-driver`. + This lists all the drivers available for SQLTools. +- Install the driver for your database. This also installs the core SQLTools extension. +- Click the SQLTools icon (in the left bar) +- Create a _connection_ to your database. To do this, hover over **CONNECTIONS** in the SQLTools pane. Click the "Add New Connection" icon and choose the driver and enter the connection parameters. You can then open and query it from within VS Code. ## Supported Databases + To use SQLTools you will also need to install the appropriate driver extension for your database. -If the driver you want is not available, you can use our handy [new drivers guide](https://vscode-sqltools.mteixeira.dev/en/contributing/support-new-drivers/) to write it yourself (and help our community in the process) or submit feedback via [GitHub](https://github.com/mtxr/vscode-sqltools/issues). +If the driver you want is not available, you can use our handy [new drivers guide](https://vscode-sqltools.mteixeira.dev/en/contributing/support-new-drivers/) to write it yourself (and help our community in the process) or submit feedback via [GitHub](https://github.com/mtxr/vscode-sqltools/issues). If you need a driver sooner, get in touch with the maintainers directly – we might be able to help you out. @@ -58,48 +59,49 @@ Psst… we’re always on the lookout for maintainers for the official drivers, **Official Drivers** -| | Driver | Marketplace | Package | -| ---------------------------------------------------------------------------------------------------------------------------- | -------------------------- | --------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| ![CockroachDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.pg/icons/cockroach/default.png) | CockroachDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-pg) | [packages/driver.pg](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.pg) | -| ![MariaDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/mariadb/default.png) | MariaDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | -| ![MSSQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mssql/icons/default.png) | Microsoft SQL Server/Azure | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mssql) | [packages/driver.mssql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mssql) | -| ![MySQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/default.png) | MySQL | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | -| ![TiDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/tidb/default.png) | TiDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | -| ![PostgreSQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.pg/icons/pg/default.png) | PostgreSQL | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-pg) | [packages/driver.pg](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.pg) | -| ![SQLite](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.sqlite/icons/default.png) | SQLite | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-sqlite) | [packages/driver.sqlite](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.sqlite) | +| | Driver | Marketplace | Package | +| ------------------------------------------------------------------------------------------------------------------------- | -------------------------- | --------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| ![CockroachDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.pg/icons/cockroach/default.png) | CockroachDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-pg) | [packages/driver.pg](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.pg) | +| ![MariaDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/mariadb/default.png) | MariaDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | +| ![MSSQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mssql/icons/default.png) | Microsoft SQL Server/Azure | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mssql) | [packages/driver.mssql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mssql) | +| ![MySQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/default.png) | MySQL | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | +| ![TiDB](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.mysql/icons/tidb/default.png) | TiDB | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-mysql) | [packages/driver.mysql](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.mysql) | +| ![PostgreSQL](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.pg/icons/pg/default.png) | PostgreSQL | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-pg) | [packages/driver.pg](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.pg) | +| ![SQLite](https://raw.githubusercontent.com/mtxr/vscode-sqltools/dev/packages/driver.sqlite/icons/default.png) | SQLite | [Link](https://marketplace.visualstudio.com/items?itemName=mtxr.sqltools-driver-sqlite) | [packages/driver.sqlite](https://github.com/mtxr/vscode-sqltools/tree/dev/packages/driver.sqlite) | **Community Drivers:** -| | Driver | Marketplace | Maintainer and Repository | -| ----------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| ![AWS Redshift](https://raw.githubusercontent.com/kj-9/sqltools-redshift-driver/main/icons/default.png) | AWS Redshift | [Link](https://marketplace.visualstudio.com/items?itemName=kj.sqltools-driver-redshift) | [@kj-9](https://github.com/kj-9)
[kj-9/sqltools-redshift-driver](https://github.com/kj-9/sqltools-redshift-driver) | -| ![ClickHouse logo](https://raw.githubusercontent.com/ultram4rine/sqltools-clickhouse-driver/master/icons/default.png) | ClickHouse | [Link](https://marketplace.visualstudio.com/items?itemName=ultram4rine.sqltools-clickhouse-driver) | [@ultram4rine](https://github.com/ultram4rine)
[ultram4rine/sqltools-clickhouse-driver](https://github.com/ultram4rine/sqltools-clickhouse-driver) | -| ![Databricks](https://raw.githubusercontent.com/databricks/sqltools-databricks-driver/main/icons/default.png) | Databricks | [Link](https://marketplace.visualstudio.com/items?itemName=databricks.sqltools-databricks-driver) | [@Databricks](https://github.com/databricks)
[databricks/sqltools-databricks-driver](https://github.com/databricks/sqltools-databricks-driver) | -| ![DuckDB Sql Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb.png) | DuckDB | [Link](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.duckdb-sql-tools) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/duckdb-sql-tools](https://github.com/RandomFractals/duckdb-sql-tools) | -| ![DuckDB Pro Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb-pro.png) | DuckDB Pro | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/pro-data-tools#duckdb-pro-tools](https://github.com/RandomFractals/pro-data-tools/blob/main/duckdb-tools.md#duckdb-pro-tools) | -| ![DuckDB (Latest Version Support)](https://raw.githubusercontent.com/evidence-dev/sqltools-duckdb-driver/master/icons/default.png) | DuckDB (Latest Version Support) | [Link](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-duckdb-driver) | [@Evidence](https://github.com/evidence-dev/evidence)
[evidence-dev/sqltools-duckdb-driver](https://github.com/evidence-dev/sqltools-duckdb-driver) | -| ![Google BigQuery](https://raw.githubusercontent.com/evidence-dev/sqltools-bigquery-driver/master/icons/default.png) | Google BigQuery| [Link](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-bigquery-driver) | [@Evidence](https://github.com/evidence-dev/evidence)
[evidence-dev/sqltools-bigquery-driver](https://github.com/evidence-dev/sqltools-bigquery-driver) | -| ![Google Cloud Spanner](https://raw.githubusercontent.com/cloudspannerecosystem/sqltools-cloud-spanner-driver/main/icons/default.png) | Google Cloud Spanner | [Link](https://marketplace.visualstudio.com/items?itemName=google-cloud-spanner-ecosystem.google-cloud-spanner-driver) | [@cloudspannerecosystem](https://github.com/cloudspannerecosystem)
[cloudspannerecosystem/sqltools-cloud-spanner-driver](https://github.com/cloudspannerecosystem/sqltools-cloud-spanner-driver) | -| ![Google Cloud SQL (PostgreSQL)](https://raw.githubusercontent.com/curioswitch/sqltools-cloudsql-pg/main/icons/pg/default.png) | Google Cloud SQL (PostgreSQL) | [Link](https://marketplace.visualstudio.com/items?itemName=curioswitch.sqltools-driver-cloudsql-pg) | [@curioswitch](https://github.com/curioswitch)
[curioswitch/sqltools-cloudsql-pg](https://github.com/curioswitch/sqltools-cloudsql-pg) | -| ![Hive](https://raw.githubusercontent.com/datafe/sqltools-hive-vscode-extension/main/icon-small.png) | Hive | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hive) | [@datafe](https://github.com/datafe)
[datafe/sqltools-hive-driver](https://github.com/datafe/sqltools-hive-vscode-extension) | -| ![Hologres](https://raw.githubusercontent.com/datafe/sqltools-hologres-vscode-extension/main/icon-small.png) | Hologres | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hologres) | [@datafe](https://github.com/datafe)
[datafe/sqltools-hologres-driver](https://github.com/datafe/sqltools-hologres-vscode-extension) | -| ![InterSystems IRIS logo](https://raw.githubusercontent.com/intersystems-community/sqltools-intersystems-driver/master/icons/default.png) | InterSystems IRIS | [Link](https://marketplace.visualstudio.com/items?itemName=intersystems-community.sqltools-intersystems-driver) | [@daimor](https://github.com/daimor)
[intersystems-community/sqltools-intersystems-driver](https://github.com/intersystems-community/sqltools-intersystems-driver) | -| ![MaxCompute](https://raw.githubusercontent.com/datafe/sqltools-maxcompute-vscode-extension/main/icon-small.png) | MaxCompute | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-maxcompute) | [@datafe](https://github.com/datafe)
[datafe/sqltools-maxcompute-driver](https://github.com/datafe/sqltools-maxcompute-vscode-extension) | -|![Oracle](https://raw.githubusercontent.com/hashhashu/sqltools-Oracle-driver/master/icons/default.png) | Oracle | [Link](https://marketplace.visualstudio.com/items?itemName=hurly.sqltools-oracle-driver) | [@hashhashu](https://github.com/hashhashu)
[hashhashu/sqltools-Oracle-driver](https://github.com/hashhashu/sqltools-Oracle-driver) | -| ![SAP HANA](https://raw.githubusercontent.com/SAP/sap-hana-driver-for-sqltools/master/icons/default.png) | SAP HANA | [Link](https://marketplace.visualstudio.com/items?itemName=SAPOSS.sap-hana-driver-for-sqltools) | [@SAP](https://github.com/SAP)
[SAP/sap-hana-driver-for-sqltools](https://github.com/SAP/sap-hana-driver-for-sqltools) | -| ![SingleStore](https://github.com/singlestore-labs/sqltools-singlestore-driver/blob/main/icons/default.png) | SingleStore | [Link](https://marketplace.visualstudio.com/items?itemName=singlestore.sqltools-singlestore-driver) | [@singlestore-labs](https://github.com/singlestore-labs)
[singlestore-labs/sqltools-singlestore-driver](https://github.com/singlestore-labs/sqltools-singlestore-driver) | -| ![Snowflake](https://raw.githubusercontent.com/koszti/sqltools-snowflake-driver/master/icons/default.png) | Snowflake | [Link](https://marketplace.visualstudio.com/items?itemName=koszti.snowflake-driver-for-sqltools) | [@koszti](https://github.com/koszti)
[koszti/sqltools-snowflake-driver](https://github.com/koszti/sqltools-snowflake-driver) | -| ![SQLite Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/sqlite-pro-tools.png) | SQLite Pro | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/pro-data-tools/sqlite-tools](https://github.com/RandomFractals/pro-data-tools/blob/main/sqlite-tools.md) | -| ![Teradata](https://raw.githubusercontent.com/scriptpup/sqltools-teradata-driver/master/icons/default.png) | Teradata | [Link](https://marketplace.visualstudio.com/items?itemName=scriptpup.sqltools-teradata-driver) | [@ScriptPup](https://github.com/ScriptPup)
[ScriptPup/sqltools-teradata-driver](https://github.com/ScriptPup/sqltools-teradata-driver) | -| ![Trino](https://raw.githubusercontent.com/regadas/sqltools-trino-driver/master/icons/default.png) | Trino | [Link](https://marketplace.visualstudio.com/items?itemName=regadas.sqltools-trino-driver) | [@regadas](https://github.com/regadas)
[regadas/sqltools-trino-driver](https://github.com/regadas/sqltools-trino-driver) | -| ![Vertica](https://raw.githubusercontent.com/vertica/sqltools-vertica-driver/main/vertica-logo-small.png) | Vertica | [Link](https://marketplace.visualstudio.com/items?itemName=vertica-official.sqltools-vertica-driver) | [@vertica](https://github.com/vertica)
[vertica/sqltools-vertica-driver](https://github.com/vertica/sqltools-vertica-driver) | +| | Driver | Marketplace | Maintainer and Repository | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| ![AWS Redshift](https://raw.githubusercontent.com/kj-9/sqltools-redshift-driver/main/icons/default.png) | AWS Redshift | [Link](https://marketplace.visualstudio.com/items?itemName=kj.sqltools-driver-redshift) | [@kj-9](https://github.com/kj-9)
[kj-9/sqltools-redshift-driver](https://github.com/kj-9/sqltools-redshift-driver) | +| ![ClickHouse logo](https://raw.githubusercontent.com/ultram4rine/sqltools-clickhouse-driver/master/icons/default.png) | ClickHouse | [Link](https://marketplace.visualstudio.com/items?itemName=ultram4rine.sqltools-clickhouse-driver) | [@ultram4rine](https://github.com/ultram4rine)
[ultram4rine/sqltools-clickhouse-driver](https://github.com/ultram4rine/sqltools-clickhouse-driver) | +| ![Databricks](https://raw.githubusercontent.com/databricks/sqltools-databricks-driver/main/icons/default.png) | Databricks | [Link](https://marketplace.visualstudio.com/items?itemName=databricks.sqltools-databricks-driver) | [@Databricks](https://github.com/databricks)
[databricks/sqltools-databricks-driver](https://github.com/databricks/sqltools-databricks-driver) | +| ![Db2](https://raw.githubusercontent.com/lucashancock/db2-sqltools/master/icons/default.png) | Db2 | [Link](https://marketplace.visualstudio.com/items?itemName=lucashancock.db2-sqltools) | [@lucashancock](https://github.com/lucashancock)
[lucashancock/db2-sqltools](https://github.com/lucashancock/db2-sqltools) | +| ![DuckDB Sql Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb.png) | DuckDB | [Link](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.duckdb-sql-tools) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/duckdb-sql-tools](https://github.com/RandomFractals/duckdb-sql-tools) | +| ![DuckDB Pro Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb-pro.png) | DuckDB Pro | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/pro-data-tools#duckdb-pro-tools](https://github.com/RandomFractals/pro-data-tools/blob/main/duckdb-tools.md#duckdb-pro-tools) | +| ![DuckDB (Latest Version Support)](https://raw.githubusercontent.com/evidence-dev/sqltools-duckdb-driver/master/icons/default.png) | DuckDB (Latest Version Support) | [Link](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-duckdb-driver) | [@Evidence](https://github.com/evidence-dev/evidence)
[evidence-dev/sqltools-duckdb-driver](https://github.com/evidence-dev/sqltools-duckdb-driver) | +| ![Google BigQuery](https://raw.githubusercontent.com/evidence-dev/sqltools-bigquery-driver/master/icons/default.png) | Google BigQuery | [Link](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-bigquery-driver) | [@Evidence](https://github.com/evidence-dev/evidence)
[evidence-dev/sqltools-bigquery-driver](https://github.com/evidence-dev/sqltools-bigquery-driver) | +| ![Google Cloud Spanner](https://raw.githubusercontent.com/cloudspannerecosystem/sqltools-cloud-spanner-driver/main/icons/default.png) | Google Cloud Spanner | [Link](https://marketplace.visualstudio.com/items?itemName=google-cloud-spanner-ecosystem.google-cloud-spanner-driver) | [@cloudspannerecosystem](https://github.com/cloudspannerecosystem)
[cloudspannerecosystem/sqltools-cloud-spanner-driver](https://github.com/cloudspannerecosystem/sqltools-cloud-spanner-driver) | +| ![Google Cloud SQL (PostgreSQL)](https://raw.githubusercontent.com/curioswitch/sqltools-cloudsql-pg/main/icons/pg/default.png) | Google Cloud SQL (PostgreSQL) | [Link](https://marketplace.visualstudio.com/items?itemName=curioswitch.sqltools-driver-cloudsql-pg) | [@curioswitch](https://github.com/curioswitch)
[curioswitch/sqltools-cloudsql-pg](https://github.com/curioswitch/sqltools-cloudsql-pg) | +| ![Hive](https://raw.githubusercontent.com/datafe/sqltools-hive-vscode-extension/main/icon-small.png) | Hive | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hive) | [@datafe](https://github.com/datafe)
[datafe/sqltools-hive-driver](https://github.com/datafe/sqltools-hive-vscode-extension) | +| ![Hologres](https://raw.githubusercontent.com/datafe/sqltools-hologres-vscode-extension/main/icon-small.png) | Hologres | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hologres) | [@datafe](https://github.com/datafe)
[datafe/sqltools-hologres-driver](https://github.com/datafe/sqltools-hologres-vscode-extension) | +| ![InterSystems IRIS logo](https://raw.githubusercontent.com/intersystems-community/sqltools-intersystems-driver/master/icons/default.png) | InterSystems IRIS | [Link](https://marketplace.visualstudio.com/items?itemName=intersystems-community.sqltools-intersystems-driver) | [@daimor](https://github.com/daimor)
[intersystems-community/sqltools-intersystems-driver](https://github.com/intersystems-community/sqltools-intersystems-driver) | +| ![MaxCompute](https://raw.githubusercontent.com/datafe/sqltools-maxcompute-vscode-extension/main/icon-small.png) | MaxCompute | [Link](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-maxcompute) | [@datafe](https://github.com/datafe)
[datafe/sqltools-maxcompute-driver](https://github.com/datafe/sqltools-maxcompute-vscode-extension) | +| ![Oracle](https://raw.githubusercontent.com/hashhashu/sqltools-Oracle-driver/master/icons/default.png) | Oracle | [Link](https://marketplace.visualstudio.com/items?itemName=hurly.sqltools-oracle-driver) | [@hashhashu](https://github.com/hashhashu)
[hashhashu/sqltools-Oracle-driver](https://github.com/hashhashu/sqltools-Oracle-driver) | +| ![SAP HANA](https://raw.githubusercontent.com/SAP/sap-hana-driver-for-sqltools/master/icons/default.png) | SAP HANA | [Link](https://marketplace.visualstudio.com/items?itemName=SAPOSS.sap-hana-driver-for-sqltools) | [@SAP](https://github.com/SAP)
[SAP/sap-hana-driver-for-sqltools](https://github.com/SAP/sap-hana-driver-for-sqltools) | +| ![SingleStore](https://github.com/singlestore-labs/sqltools-singlestore-driver/blob/main/icons/default.png) | SingleStore | [Link](https://marketplace.visualstudio.com/items?itemName=singlestore.sqltools-singlestore-driver) | [@singlestore-labs](https://github.com/singlestore-labs)
[singlestore-labs/sqltools-singlestore-driver](https://github.com/singlestore-labs/sqltools-singlestore-driver) | +| ![Snowflake](https://raw.githubusercontent.com/koszti/sqltools-snowflake-driver/master/icons/default.png) | Snowflake | [Link](https://marketplace.visualstudio.com/items?itemName=koszti.snowflake-driver-for-sqltools) | [@koszti](https://github.com/koszti)
[koszti/sqltools-snowflake-driver](https://github.com/koszti/sqltools-snowflake-driver) | +| ![SQLite Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/sqlite-pro-tools.png) | SQLite Pro | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [@RandomFractals](https://github.com/RandomFractals)
[RandomFractals/pro-data-tools/sqlite-tools](https://github.com/RandomFractals/pro-data-tools/blob/main/sqlite-tools.md) | +| ![Teradata](https://raw.githubusercontent.com/scriptpup/sqltools-teradata-driver/master/icons/default.png) | Teradata | [Link](https://marketplace.visualstudio.com/items?itemName=scriptpup.sqltools-teradata-driver) | [@ScriptPup](https://github.com/ScriptPup)
[ScriptPup/sqltools-teradata-driver](https://github.com/ScriptPup/sqltools-teradata-driver) | +| ![Trino](https://raw.githubusercontent.com/regadas/sqltools-trino-driver/master/icons/default.png) | Trino | [Link](https://marketplace.visualstudio.com/items?itemName=regadas.sqltools-trino-driver) | [@regadas](https://github.com/regadas)
[regadas/sqltools-trino-driver](https://github.com/regadas/sqltools-trino-driver) | +| ![Vertica](https://raw.githubusercontent.com/vertica/sqltools-vertica-driver/main/vertica-logo-small.png) | Vertica | [Link](https://marketplace.visualstudio.com/items?itemName=vertica-official.sqltools-vertica-driver) | [@vertica](https://github.com/vertica)
[vertica/sqltools-vertica-driver](https://github.com/vertica/sqltools-vertica-driver) | **Related Tools** -| | Name | Download | Repository | -| --- | ---- | -------- | ---------- | +| | Name | Download | Repository | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | | ![Markdown SQL Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/markdown-sql-tools.png) | Markdown SQL Pro Tools | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=295482) | [RandomFractals/pro-data-tools#markdown-sql-pro-tools](https://github.com/RandomFractals/pro-data-tools#markdown-sql-pro-tools) | -| ![PRQL Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/prql-pro-tools.png) | PRQL Pro Tools | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [RandomFractals/pro-data-tools#prql-pro-tools](https://github.com/RandomFractals/pro-data-tools#prql-pro-tools) | +| ![PRQL Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/prql-pro-tools.png) | PRQL Pro Tools | [Sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) | [RandomFractals/pro-data-tools#prql-pro-tools](https://github.com/RandomFractals/pro-data-tools#prql-pro-tools) | ## Contributing diff --git a/docs/src/pages/en/drivers/drivers-table.mdx b/docs/src/pages/en/drivers/drivers-table.mdx index fb2aa183..d58596c9 100644 --- a/docs/src/pages/en/drivers/drivers-table.mdx +++ b/docs/src/pages/en/drivers/drivers-table.mdx @@ -27,28 +27,29 @@ Psst… we’re always on the lookout for maintainers for the official drivers, | ![AWS Redshift](https://raw.githubusercontent.com/kj-9/sqltools-redshift-driver/main/icons/default.png) | AWS Redshift
by [@kj-9](https://github.com/kj-9) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=kj.sqltools-driver-redshift)
[📦 source](https://github.com/kj-9/sqltools-redshift-driver) | | ![ClickHouse logo](https://raw.githubusercontent.com/ultram4rine/sqltools-clickhouse-driver/master/icons/default.png) | ClickHouse
by [@ultram4rine](https://github.com/ultram4rine) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=ultram4rine.sqltools-clickhouse-driver)
[📦 source](https://github.com/ultram4rine/sqltools-clickhouse-driver) | | ![Databricks logo](https://raw.githubusercontent.com/databricks/sqltools-databricks-driver/main/icons/default.png) | Databricks
by [@Databricks](https://github.com/databricks) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=databricks.sqltools-databricks-driver)
[📦 source](https://github.com/databricks/sqltools-databricks-driver) | +| ![Db2 logo](https://raw.githubusercontent.com/lucashancock/db2-sqltools/master/icons/default.png) | IBM Db2
by [@lucashancock](https://github.com/lucashancock) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=lucashancock.db2-sqltools)
[📦 source](https://github.com/lucashancock/db2-sqltools) | | ![DuckDB Sql Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb.png) | DuckDB
by [@RandomFractals](https://github.com/RandomFractals) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.duckdb-sql-tools)
[📚 docs](https://github.com/RandomFractals/duckdb-sql-tools) | | ![DuckDB Pro Tools](https://raw.githubusercontent.com/RandomFractals/duckdb-sql-tools/main/docs/images/duckdb-pro.png) | DuckDB Pro
by [@RandomFractals](https://github.com/RandomFractals) | [⏬ sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884)
[📚 docs](https://github.com/RandomFractals/pro-data-tools/blob/main/duckdb-tools.md#duckdb-pro-tools) | -| ![DuckDB (Lastest Version Support) ](https://raw.githubusercontent.com/evidence-dev/sqltools-duckdb-driver/master/icons/default.png) | DuckDB (Latest Version)
by [@Evidence](https://github.com/evidence-dev/evidence) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-duckdb-driver)
[📦 source](https://github.com/evidence-dev/sqltools-duckdb-driver) | -| ![Google BigQuery](https://raw.githubusercontent.com/evidence-dev/sqltools-bigquery-driver/master/icons/default.png) | Google BigQuery
by [@Evidence](https://github.com/evidence-dev/evidence) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-bigquery-driver)
[📦 source](https://github.com/evidence-dev/sqltools-bigquery-driver) | +| ![DuckDB (Lastest Version Support) ](https://raw.githubusercontent.com/evidence-dev/sqltools-duckdb-driver/master/icons/default.png) | DuckDB (Latest Version)
by [@Evidence](https://github.com/evidence-dev/evidence) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-duckdb-driver)
[📦 source](https://github.com/evidence-dev/sqltools-duckdb-driver) | +| ![Google BigQuery](https://raw.githubusercontent.com/evidence-dev/sqltools-bigquery-driver/master/icons/default.png) | Google BigQuery
by [@Evidence](https://github.com/evidence-dev/evidence) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=Evidence.sqltools-bigquery-driver)
[📦 source](https://github.com/evidence-dev/sqltools-bigquery-driver) | | ![Google Cloud Spanner](https://raw.githubusercontent.com/cloudspannerecosystem/sqltools-cloud-spanner-driver/main/icons/default.png) | Google Cloud Spanner
by [@cloudspannerecosystem](https://github.com/cloudspannerecosystem) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=google-cloud-spanner-ecosystem.google-cloud-spanner-driver)
[📦 source](https://github.com/cloudspannerecosystem/sqltools-cloud-spanner-driver) | | ![Google Cloud SQL (PostgreSQL)](https://raw.githubusercontent.com/curioswitch/sqltools-cloudsql-pg/main/icons/pg/default.png) | Google Cloud SQL (PostgreSQL)
by [@curioswitch](https://github.com/curioswitch) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=curioswitch.sqltools-driver-cloudsql-pg)
[📦 source](https://github.com/curioswitch/sqltools-cloudsql-pg) | -| ![Hive](https://raw.githubusercontent.com/datafe/sqltools-hive-vscode-extension/main/icon-small.png) | Hive
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hive)
[📦 source](https://github.com/datafe/sqltools-hive-vscode-extension) | -| ![Hologres](https://raw.githubusercontent.com/datafe/sqltools-hologres-vscode-extension/main/icon-small.png) | Hologres
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hologres)
[📦 source](https://github.com/datafe/sqltools-hologres-vscode-extension) | +| ![Hive](https://raw.githubusercontent.com/datafe/sqltools-hive-vscode-extension/main/icon-small.png) | Hive
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hive)
[📦 source](https://github.com/datafe/sqltools-hive-vscode-extension) | +| ![Hologres](https://raw.githubusercontent.com/datafe/sqltools-hologres-vscode-extension/main/icon-small.png) | Hologres
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-hologres)
[📦 source](https://github.com/datafe/sqltools-hologres-vscode-extension) | | ![InterSystems IRIS logo](https://raw.githubusercontent.com/intersystems-community/sqltools-intersystems-driver/master/icons/default.png) | InterSystems IRIS
by [@daimor](https://github.com/daimor) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=intersystems-community.sqltools-intersystems-driver)
[📦 source](https://github.com/intersystems-community/sqltools-intersystems-driver) | -| ![MaxCompute](https://raw.githubusercontent.com/datafe/sqltools-maxcompute-vscode-extension/main/icon-small.png) | MaxCompute
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-maxcompute)
[📦 source](https://github.com/datafe/sqltools-maxcompute-vscode-extension) | +| ![MaxCompute](https://raw.githubusercontent.com/datafe/sqltools-maxcompute-vscode-extension/main/icon-small.png) | MaxCompute
by [@datafe](https://github.com/datafe) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=dataworks.sqltools-driver-maxcompute)
[📦 source](https://github.com/datafe/sqltools-maxcompute-vscode-extension) | | ![Oracle](https://raw.githubusercontent.com/hashhashu/sqltools-Oracle-driver/master/icons/default.png) | Oracle
by [@hashhashu](https://github.com/hashhashu) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=hurly.sqltools-oracle-driver)
[📦 source](https://github.com/hashhashu/sqltools-Oracle-driver) | | ![SAP HANA](https://raw.githubusercontent.com/SAP/sap-hana-driver-for-sqltools/master/icons/default.png) | SAP HANA
by [@SAP](https://github.com/SAP) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=SAPOSS.sap-hana-driver-for-sqltools)
[📦 source](https://github.com/SAP/sap-hana-driver-for-sqltools) | -| ![SingleStore](https://raw.githubusercontent.com/singlestore-labs/sqltools-singlestore-driver/main/icons/default.png) | SingleStore
by [@SingleStore](https://github.com/singlestore-labs) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=singlestore.sqltools-singlestore-driver)
[📦 source](https://github.com/singlestore-labs/sqltools-singlestore-driver) | +| ![SingleStore](https://raw.githubusercontent.com/singlestore-labs/sqltools-singlestore-driver/main/icons/default.png) | SingleStore
by [@SingleStore](https://github.com/singlestore-labs) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=singlestore.sqltools-singlestore-driver)
[📦 source](https://github.com/singlestore-labs/sqltools-singlestore-driver) | | ![Snowflake](https://raw.githubusercontent.com/koszti/sqltools-snowflake-driver/master/icons/default.png) | Snowflake
by [@koszti](https://github.com/koszti) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=koszti.snowflake-driver-for-sqltools)
[📦 source](https://github.com/koszti/sqltools-snowflake-driver) | | ![SQLite Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/sqlite-pro-tools.png) | SQLite Pro
by [@RandomFractals](https://github.com/RandomFractals) | [⏬ sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884)
[📚 docs](https://github.com/RandomFractals/pro-data-tools/blob/main/sqlite-tools.md) | | ![Teradata](https://raw.githubusercontent.com/scriptpup/sqltools-teradata-driver/master/icons/default.png) | Teradata
by [@ScriptPup](https://github.com/ScriptPup) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=scriptpup.sqltools-teradata-driver)
[📦 source](https://github.com/ScriptPup/sqltools-teradata-driver) | | ![Trino](https://raw.githubusercontent.com/regadas/sqltools-trino-driver/master/icons/default.png) | Trino
by [@regadas](https://github.com/regadas) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=regadas.sqltools-trino-driver)
[📦 source](https://github.com/regadas/sqltools-trino-driver) | -| ![Vertica](https://raw.githubusercontent.com/vertica/sqltools-vertica-driver/main/vertica-logo-small.png) | Vertica
by [@vertica](https://github.com/vertica) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=vertica-official.sqltools-vertica-driver)
[📦 source](https://github.com/vertica/sqltools-vertica-driver) | +| ![Vertica](https://raw.githubusercontent.com/vertica/sqltools-vertica-driver/main/vertica-logo-small.png) | Vertica
by [@vertica](https://github.com/vertica) | [⏬ marketplace](https://marketplace.visualstudio.com/items?itemName=vertica-official.sqltools-vertica-driver)
[📦 source](https://github.com/vertica/sqltools-vertica-driver) | **Related Tools** -| | Name | Links | -| --- | ---- | ----- | +| | Name | Links | +| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ![Markdown SQL Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/markdown-sql-tools.png) | Markdown SQL Pro Tools
by [@RandomFractals](https://github.com/RandomFractals) | [⏬ sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=295482)
[📚 docs](https://github.com/RandomFractals/pro-data-tools#markdown-sql-pro-tools) | | ![PRQL Pro Tools](https://raw.githubusercontent.com/RandomFractals/pro-data-tools/main/docs/images/prql-pro-tools.png) | PRQL Pro Tools
by [@RandomFractals](https://github.com/RandomFractals) | [⏬ sign up](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884)
[📚 docs](https://github.com/RandomFractals/pro-data-tools#prql-pro-tools) |