UNPKG

sqltools-duckdb-driver

Version:

Latest DuckDB support: Run queries and explore your DuckDB Database in VSCode

23 lines 478 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "title": "Name", "type": "string", "minLength": 1, "default": "DuckDB" }, "databaseFilePath": { "title": "Database file", "type": "string", "minLength": 1 }, "accessMode":{ "title": "Access Mode", "type": "string", "enum": ["Read Only", "Read/Write"], "default": "Read Only" } } }