Huakun Shen 3271507d0c
feat: add database select and execute commands
- Introduced `select` and `execute` functions in the database module to facilitate querying and executing SQL commands.
- Updated the Tauri plugin to expose these commands, allowing for database interactions from the frontend.
- Added corresponding permissions for the new commands in the permissions configuration.
- Enhanced the database library with JSON value handling for query parameters.
2025-03-25 03:53:22 -04:00

14 lines
383 B
TOML

# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-execute"
description = "Enables the execute command without any pre-configured scope."
commands.allow = ["execute"]
[[permission]]
identifier = "deny-execute"
description = "Denies the execute command without any pre-configured scope."
commands.deny = ["execute"]