配置tauri-plugin-sql插件 fnmain(){tauri::Builder::default()// highlight-next-line.plugin(tauri_plugin_sql::Builder::default().build()).run(tauri::generate_context!()).expect("error while running tauri application");} 这里,在Rust的main函数中,使用plugin方法注册tauri-plugin-sql插件 使用JavaScr...
First you need to register the core plugin with Tauri: src-tauri/src/main.rs fnmain(){tauri::Builder::default().plugin(tauri_plugin_sql::Builder::default().build()).run(tauri::generate_context!()).expect("error while running tauri application");} ...
need to check out the source code of the plugin. @@ -147,7 +147,7 @@ permissions are used. The `fs` plugin has autogenerated permissions which will disable or enable individual commands and allow or disable global scopes. These can be found in the [documentation](/plugin/file-system/#...
plugin-sql 🦀: 2.2.0 - @tauri-apps/plugin-sql : 2.2.0 - tauri-plugin-os 🦀: 2.2.0 - @tauri-apps/plugin-os : 2.2.0 - tauri-plugin-fs 🦀: 2.2.0 - @tauri-apps/plugin-fs : 2.2.0 - tauri-plugin-persisted-scope 🦀: 2.2.0 - @tauri-apps/plugin-persisted-scope : not ...
D-James-GH/tauri-plugin-sqlPublic forked fromtauri-apps/tauri-plugin-sql NotificationsYou must be signed in to change notification settings Fork0 Star0 Code Pull requests Actions Projects Security Insights Additional navigation options
/pull/454)) Fix `writeBinaryFile` crashing with `command 'write_binary_file' not found` - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to ...
"tauri-plugin-sql-api":"https://github.com/tauri-apps/tauri-plugin-sql" }, "devDependencies": { "@tauri-apps/cli":"^1.3.1", 1 change: 0 additions & 1 deletion 1 utils/common/log.js Original file line numberDiff line numberDiff line change ...
2 changes: 1 addition & 1 deletion 2 src/content/docs/plugin/sql.mdx Original file line numberDiff line numberDiff line change @@ -226,7 +226,7 @@ Migrations are applied automatically when the plugin is initialized. The plugin By default all plugin commands are blocked and cannot be acc...