File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,9 @@ This plugin provides a "classical" Tauri Plugin interface to SQLite database thr
14
14
[dependencies .tauri-plugin-sqlite ]
15
15
git = " https://github.com/lzdyes/tauri-plugin-sqlite"
16
16
tag = " v0.1.0"
17
- # branch = "main"
18
17
```
19
18
20
- ### Web
19
+ ### Webview
21
20
22
21
```
23
22
npm install github:lzdyes/tauri-plugin-sqlite#v0.1.0
@@ -29,7 +28,7 @@ yarn add github:lzdyes/tauri-plugin-sqlite#v0.1.0
29
28
30
29
### Rust
31
30
32
- Use in ` src-tauri/src/main.rs ` :
31
+ ` src-tauri/src/main.rs `
33
32
34
33
``` rust
35
34
fn main () {
@@ -75,6 +74,10 @@ const rows = await db.select<Array<{ name: string }>>('SELECT name FROM users WH
75
74
const rows = await db .select <Array <any >>(' SELECT * FROM users LIMIT $1 OFFSET $2' , [10 , 0 ])
76
75
```
77
76
77
+ ## Contribute
78
+
79
+ Contributions are welcome! please open issues and pull request :)
80
+
78
81
## License
79
82
80
83
[ MIT] ( LICENSE )
You can’t perform that action at this time.
0 commit comments