No description
Find a file
2025-03-21 17:38:05 +00:00
.github chore: combining test and typecheck configurations 2025-01-31 13:15:09 +00:00
docs feat: added option to display interactive checkboxes in tasks table 2025-03-21 16:50:03 +00:00
src chore: adding more tests and fixing small bugs 2025-03-21 17:05:24 +00:00
types-package chore: releasing types package 2025-03-14 11:17:38 +00:00
.editorconfig chore: initial version 2024-04-19 15:53:50 +01:00
.eslintignore chore: initial version 2024-04-19 15:53:50 +01:00
.eslintrc chore: initial version 2024-04-19 15:53:50 +01:00
.gitignore feat: reworked antlr4ts to antlr4 2024-11-04 21:00:52 +00:00
.npmrc chore: initial version 2024-04-19 15:53:50 +01:00
.prettierrc mvp 2024-04-30 22:52:52 +01:00
CHANGELOG.md docs: adding changelog 2025-03-21 17:38:05 +00:00
esbuild.config.mjs feat: organising project 2025-01-09 12:32:24 +00:00
jest.config.js feat: reworking communication to signals and fixing issues with some keys 2024-11-03 00:28:09 +00:00
LICENSE Create LICENSE 2024-05-06 17:43:49 +01:00
manifest.json feat: template can now access file properties 2025-03-15 16:22:20 +00:00
package.json chore: supressing warnings when compiling the project 2025-03-21 17:07:44 +00:00
pnpm-lock.yaml feat: adding JS syntax highlighting (to be used in Charts view) 2025-03-14 15:37:44 +00:00
README.md docs: updating docs based on feedback 2025-01-15 14:30:09 +00:00
styles.css feat: adding TEMPLATE view with full support for handlebars 2025-03-13 16:10:40 +00:00
tsconfig.json docs: adding syntax highlighting to the documentation 2025-03-19 11:35:38 +00:00
version-bump.mjs chore: initial version 2024-04-19 15:53:50 +01:00
versions.json feat: template can now access file properties 2025-03-15 16:22:20 +00:00

Obsidian SQLSeal

SQLSeal allow you to query for files, tags and tasks in your vault using familar SQL syntax. It also enables you to preview any CSV file in your vault as a database. It brings fully featured database into your vault!

Installation

You can install plugin from the Community Plugins directly from Obsidian, just look for SQLSeal in the marketplace.

Manual Instalation

To manually install the package, open Releases and download .zip of the last one. Unzip it in your vault under .obsidian/Plugins/sqlseal.

Usage

Once you install the plugin, you can use it by creating sqlseal codeblocks in your notes. To create table base on the existing CSV file in your vault simply address it using the following command:

TABLE transactions = file(transactions.csv)

SELECT * FROM transactions LIMIT 10

The code above will create table called transactions based on the transactions.csv file from your vault. Further you can refer to it using regular SELECT statements. You can define multiple tables in a single snippet. You can also point to the tables defined in different snippets within the same note (for now tables stay local to the file).

For more comprehensive documentation head to hypersphere.blog/sql-seal.

Disclaimer

The plugin authors do not take any resposibility for any potential data loss. Always backup your files before usage. That said, plugin does not modify any files in the Vault so you should be fine :)

Stay in Touch!

If you have any questions about the project, ideas or want to share your use-cases, join our Discord Channel!