No description
Find a file
2024-05-05 22:41:36 +01:00
.github/workflows deploy script, publish script 2024-05-03 21:18:13 +01:00
docs fixing link to quick start 2024-05-05 22:41:36 +01:00
src deploy script, publish script 2024-05-03 21:18:13 +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 deploy script, publish script 2024-05-03 21:18:13 +01:00
.npmrc chore: initial version 2024-04-19 15:53:50 +01:00
.prettierrc mvp 2024-04-30 22:52:52 +01:00
esbuild.config.mjs deploy script, publish script 2024-05-03 21:18:13 +01:00
main.ts deploy script, publish script 2024-05-03 21:18:13 +01:00
manifest.json added docs, testing observers 2024-05-01 22:54:41 +01:00
package-lock.json added docs, testing observers 2024-05-01 22:54:41 +01:00
package.json skipping typecheck for now 2024-05-03 21:33:19 +01:00
pnpm-lock.yaml skipping typecheck for now 2024-05-03 21:33:19 +01:00
README.md fixing documentation 2024-05-05 22:40:58 +01:00
styles.css chore: initial version 2024-04-19 15:53:50 +01:00
tsconfig.json skipping typecheck for now 2024-05-03 21:33:19 +01:00
version-bump.mjs chore: initial version 2024-04-19 15:53:50 +01:00
versions.json added docs, testing observers 2024-05-01 22:54:41 +01:00
yarn.lock added docs, testing observers 2024-05-01 22:54:41 +01:00

Obsidian SQLSeal

SQLSeal allows to transform your CSV files located in your vault into fully-fledged SQL database. You can use SQL statements to query this data however you like.

Installation

Once the library is published in Obsidian Official Community Repository: just head to Community Tab in your Obisidian Settings page and search for "SQLSeal".

Note: Please note that this plugin is in early phase. Basic functionality should work just fine but I do not take any responsibility for potential data loss and damage to your Vault.

Manual Instalation

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

Usage

Once you instal 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.