No description
Find a file
2025-03-14 10:26:09 +00:00
.github chore: combining test and typecheck configurations 2025-01-31 13:15:09 +00:00
docs docs: adding documentation for the new template view 2025-03-14 10:11:14 +00:00
src chore: adding extra variables to the inline query too 2025-03-14 10:26:09 +00:00
types-package feat: external API for registering views and custom functions. Added subproject for publishing npm package with types for external plugins. 2025-01-29 22:36:19 +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 chore: modifying changelog 2025-03-14 10:22:14 +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 docs: adding documentation and bumping version 2025-02-17 10:26:26 +00:00
package.json feat: adding TEMPLATE view with full support for handlebars 2025-03-13 16:10:40 +00:00
pnpm-lock.yaml feat: adding TEMPLATE view with full support for handlebars 2025-03-13 16:10:40 +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 feat: external API for registering views and custom functions. Added subproject for publishing npm package with types for external plugins. 2025-01-29 22:36:19 +00:00
version-bump.mjs chore: initial version 2024-04-19 15:53:50 +01:00
versions.json docs: adding documentation and bumping version 2025-02-17 10:26:26 +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!