|
12 | 12 |
|
13 | 13 | [DuckDB](https://duckdb.org/docs/) is an in-process SQL [OLAP](https://en.wikipedia.org/wiki/Online_analytical_processing) database management system that uses vectorized data engine for optimized analytics and parallel query processing with extensive SQL support and direct `Parquet`, `CSV`, and `JSON` data loading and query capabilites for local and remote data sources.
|
14 | 14 |
|
15 |
| -[DuckDB SQL Tools](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.duckdb-sql-tools) *Preview* extension v1.5.0 adds the following basic DuckDB SQL capabilities to VS Code IDE for working with DuckDB instances: |
| 15 | +[DuckDB SQL Tools](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.duckdb-sql-tools) *Preview* extension v1.6.0 adds the following basic DuckDB SQL capabilities to VS Code IDE for working with DuckDB instances: |
16 | 16 |
|
17 |
| -- **Connect** to a local DuckDB v0.9.2 instance |
| 17 | +- **Connect** to a local DuckDB v0.10.2 instance |
18 | 18 | - **Create** new in-memory DuckDB instance
|
19 |
| -- **View** DuckDB v0.9.2 tables, columns, and views |
| 19 | +- **View** DuckDB v0.10.2 tables, columns, and views |
20 | 20 | - **Run** SQL queries on open DuckDB connections
|
21 | 21 | - **Attach** SQLite database files to in-memory DuckDB instances
|
22 | 22 | - **Query** remote `CSV` and `Parquet` data files with [DuckDB HTTPFS](https://duckdb.org/docs/extensions/httpfs.html) extension
|
@@ -79,17 +79,17 @@ SQL Tools support many popular databases via the [official and community databas
|
79 | 79 |
|
80 | 80 | 
|
81 | 81 |
|
82 |
| -The latest version of [DuckDB Pro Tools](https://github.com/RandomFractals/pro-data-tools/blob/main/duckdb-tools.md#duckdb-pro-tools) extension adds the following capabilities to VS Code IDE for working with [DuckDB v0.9](https://duckdb.org/2023/09/26/announcing-duckdb-090.html) instances: |
| 82 | +The latest version of [DuckDB Pro Tools](https://github.com/RandomFractals/pro-data-tools/blob/main/duckdb-tools.md#duckdb-pro-tools) extension adds the following capabilities to VS Code IDE for working with [DuckDB v0.10](https://duckdb.org/2024/02/13/announcing-duckdb-0100.html) instances: |
83 | 83 |
|
84 |
| -- **Connect** to local DuckDB [v0.9.2](https://github.com/duckdb/duckdb/releases/tag/v0.9.2) instances |
| 84 | +- **Connect** to local DuckDB [v0.10.2](https://github.com/duckdb/duckdb/releases/tag/v0.10.2) instances |
85 | 85 | - **Create** new in-memory DuckDB instance
|
86 | 86 | - **Import** local and remote `CSV`, `JSON` and `Parquet` data files into in-memory DuckDB instance for exploratory data analysis (EDA)
|
87 |
| -- **View** DuckDB v0.9.2 databases, schemas, tables, columns, views, indexes, sequences, extensions, settings, functions, types and keywords in SQL Tools Connections Explorer |
| 87 | +- **View** DuckDB v0.10.2 databases, schemas, tables, columns, views, indexes, sequences, extensions, settings, functions, types and keywords in SQL Tools Connections Explorer |
88 | 88 | - **Run** SQL queries on active DuckDB connections
|
89 | 89 | - **Attach** SQLite database files to in-memory DuckDB instances to run analytical queries
|
90 | 90 | - **Query** remote `CSV`, `Parquet`, and `JSON` data files with [DuckDB HTTPFS](https://duckdb.org/docs/extensions/httpfs.html) extension and new [DuckDB JSON](https://duckdb.org/2023/03/03/json.html) extension
|
91 | 91 | - **Create** in-memory DuckDB tables from remote data sources and query results
|
92 |
| -- **Manage** DuckDB v0.9.2 connections in SQL Tools Connections Explorer |
| 92 | +- **Manage** DuckDB v0.10.2 connections in SQL Tools Connections Explorer |
93 | 93 | - **Auto-complete** SQL keywords, DuckDB instance table names, column names, and view names for active DuckDB connections in VS Code SQL editor
|
94 | 94 | - **Save** named SQL query Bookmarks
|
95 | 95 | - **Use** SQL Query History
|
@@ -212,19 +212,19 @@ Due to the limited time and minimal development effort invested into building th
|
212 | 212 |
|
213 | 213 | ## DuckDB Storage
|
214 | 214 |
|
215 |
| -**DuckDB SQL Tools** *Preview* v1.5.0 release of this extension supports only local database instances created with [DuckDB v0.9.2](https://github.com/duckdb/duckdb/releases/tag/v0.9.2) engine. Database instances and files created with older minor versions of DuckDB are not supported as they use different compression and storage formats and the structure of `.duckdb` file has been changing as DuckDB engine is evolving. |
| 215 | +**DuckDB SQL Tools** *Preview* v1.5.0 release of this extension supports only local database instances created with [DuckDB v0.10.2](https://github.com/duckdb/duckdb/releases/tag/v0.10.2) engine. Database instances and files created with older minor versions of DuckDB are not supported as they use different compression and storage formats and the structure of `.duckdb` file has been changing as DuckDB engine is evolving. |
216 | 216 |
|
217 |
| -Use [DuckDB CLI](https://duckdb.org/docs/api/cli.html) to export data from the older database file versions and create new `.duckdb` file using the latest DuckDB storage implemenation. Read [Announcing DuckDB 0.9.0](https://duckdb.org/2023/09/26/announcing-duckdb-090.html) blog post for more information about DuckDB v0.9 storage improvements and new features. |
| 217 | +Use [DuckDB CLI](https://duckdb.org/docs/api/cli.html) to export data from the older database file versions and create new `.duckdb` file using the latest DuckDB storage implemenation. Read [Announcing DuckDB 0.10.0](https://duckdb.org/2024/02/13/announcing-duckdb-0100.html) blog post for more information about DuckDB v0.10 storage improvements, backward compatibility, and new features. |
218 | 218 |
|
219 | 219 | You can use prior [`v1.0.2`](https://github.com/RandomFractals/duckdb-sql-tools/releases/tag/v1.0.2) of this free **DuckDB Sql Tools** *Preview* extension to work with the older DuckDB [v0.6.1](https://github.com/duckdb/duckdb/releases/tag/v0.6.1) files. DuckDB SQL Tools [`v1.1.0`](https://github.com/RandomFractals/duckdb-sql-tools/releases/tag/v1.1.0) supports DuckDB [v0.7.1](https://github.com/duckdb/duckdb/releases/tag/v0.7.1), and DuckDB SQL Tools [`v1.2.0`](https://github.com/RandomFractals/duckdb-sql-tools/releases/tag/v1.2.0) supports DuckDB [v0.8.1](https://github.com/duckdb/duckdb/releases/tag/v0.8.1).
|
220 | 220 |
|
221 |
| -The **Premium** [**DuckDB Pro Tools**](https://github.com/RandomFractals/pro-data-tools/tree/main#duckdb-pro-tools) extension version, available to our [**Pro** sponsors](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) on GitHub, supports DuckDB [v0.9.2](https://github.com/duckdb/duckdb/releases/tag/v0.9.2) files with many advanced SQL Tools features, and will be updated to support the latest DuckDB [v1.0.0](https://github.com/duckdb/duckdb/releases) storage format and features soon. |
| 221 | +The **Premium** [**DuckDB Pro Tools**](https://github.com/RandomFractals/pro-data-tools/tree/main#duckdb-pro-tools) extension version, available to our [**Pro** sponsors](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) on GitHub, supports DuckDB [v0.10.2](https://github.com/duckdb/duckdb/releases/tag/v0.10.2) files with many advanced SQL Tools features, and will be updated to support the latest DuckDB [v1.0.0](https://github.com/duckdb/duckdb/releases) storage format and features soon. |
222 | 222 |
|
223 | 223 | ## Read-Only DuckDB
|
224 | 224 |
|
225 | 225 | **DuckDB SQL Tools** *Preview* extension opens `.duckdb` database files in `read-only` mode.
|
226 | 226 |
|
227 |
| -The **Premium DuckDB Pro Tools** extension version, available to our [**Pro** sponsors](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) on GitHub, supports opening `.duckdb` files in write mode, provides DuckDB v0.9 support, extended DuckDB connection, schemas, systems objecs, and views display. |
| 227 | +The **Premium DuckDB Pro Tools** extension version, available to our [**Pro** sponsors](https://github.com/sponsors/RandomFractals/sponsorships?tier_id=18884) on GitHub, supports opening `.duckdb` files in write mode, provides DuckDB v0.10 support, extended DuckDB connection, schemas, systems objecs, and views display. |
228 | 228 |
|
229 | 229 | ## In-Memory DuckDB
|
230 | 230 |
|
|
0 commit comments