diff options
author | Louie S <louie@example.com> | 2023-08-26 12:00:59 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-08-26 12:00:59 -0400 |
commit | b70cc298b199c7e735eebb23869481adccbc237f (patch) | |
tree | 547461c841fa529730d8ecb17138eed77f99f030 /src/lib/insert |
First commit
Diffstat (limited to 'src/lib/insert')
-rw-r--r-- | src/lib/insert | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/insert b/src/lib/insert new file mode 100644 index 0000000..31c1b4c --- /dev/null +++ b/src/lib/insert @@ -0,0 +1,8 @@ +insert() { + DB_PATH="$1" + NAME="$2" + TYPE="$3" + PAGE_PATH="$4" + + sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"$PAGE_PATH\");" +} |