配置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...
{ "name": "tauri-plugin-sql-api", "version": "0.0.0", "description": "Interface with SQL databases", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" ], "type": "module", "browser": "dist-js/index.min.js", "module": "dist-js/...
[package] name = "tauri-plugin-sql" version = "0.0.0" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } edition = { workspace = true } #rust-version = { workspace = true } rust-version = "1.80" # See more keys and the...
tauri-plugin-sql / LICENSE_MIT MIT License A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code. Permissions Commercial use ...
tauri-plugin-sql Issue 表单模式来袭 提交Issue,填表就好 内容必填选填?你说了算! 精准反馈,高效沟通 我知道了查看详情 【5月27日 20:00】江湖夜语十二载,相逢一笑谈开源|Gitee 十二周年特别直播预告 扫描微信二维码支付 取消 支付完成 Watch 不关注关注所有动态仅关注版本发行动态关注但不提醒动态...
[READ ONLY] This repository is a mirror, for issue tracking and development head to: https://github.com/tauri-apps/plugins-workspace - tauri-plugin-sql/LICENSE.spdx at v1 · tauri-apps/tauri-plugin-sql
Cancel Create saved search Sign in Sign up Reseting focus {{ message }} D-James-GH / tauri-plugin-sql Public forked from tauri-apps/tauri-plugin-sql Notifications You must be signed in to change notification settings Fork 0 Star 0 ...
After doing a bit of reading today, I found out this problem supposedly occurs on x86-64, butnot x86. Fired up an x86 android vm and voila, it runs and doesn't crash immediately like before. Hopefully the same will be true of arm targets. ...
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 ...
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");} ...