No description
Find a file
Kacper Kula cdcdb0e3d0
Merge pull request #157 from mAAdhaTTah/fix-filename-with-commas
Fix parsing of filename with commas in it
2025-05-22 16:07:49 +02:00
.changeset chore: added changelog 2025-05-22 14:40:12 +01:00
.github fixing changelog format 2025-05-22 14:49:45 +01:00
docs chore: fixing docs 2025-05-16 23:41:18 +01:00
scripts chore: adding checks to skip when version exists 2025-05-22 14:23:55 +01:00
src Merge pull request #157 from mAAdhaTTah/fix-filename-with-commas 2025-05-22 16:07:49 +02:00
types-package chore: bumping version of typed package 2025-04-02 17:06:18 +01: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 fixing changelog format 2025-05-22 14:49:45 +01:00
CONTRIBUTING.md chore: added contributing guide and missing package 2025-05-22 11:30:19 +01: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 chore: updated version and changelog 2025-05-06 16:23:17 +01:00
package.json Merge branch 'main' into feat/define-type 2025-05-22 14:33:51 +01:00
pnpm-lock.yaml Merge branch 'main' into feat/define-type 2025-05-22 14:33:51 +01:00
README.md docs: updating docs based on feedback 2025-01-15 14:30:09 +00:00
styles.css feat: adding boolean, date formats. properly parsing. fixing bunch of issues with ag grid 2025-05-16 23:15:04 +01: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 chore: updated version and changelog 2025-05-06 16:23:17 +01: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!