Skip to content

Commit 125a46d

Browse files
committed
docs: update README
1 parent 21098fe commit 125a46d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ This plugin provides a "classical" Tauri Plugin interface to SQLite database thr
1414
[dependencies.tauri-plugin-sqlite]
1515
git = "https://github.com/lzdyes/tauri-plugin-sqlite"
1616
tag = "v0.1.0"
17-
# branch = "main"
1817
```
1918

20-
### Web
19+
### Webview
2120

2221
```
2322
npm install github:lzdyes/tauri-plugin-sqlite#v0.1.0
@@ -29,7 +28,7 @@ yarn add github:lzdyes/tauri-plugin-sqlite#v0.1.0
2928

3029
### Rust
3130

32-
Use in `src-tauri/src/main.rs`:
31+
`src-tauri/src/main.rs`
3332

3433
```rust
3534
fn main() {
@@ -75,6 +74,10 @@ const rows = await db.select<Array<{ name: string }>>('SELECT name FROM users WH
7574
const rows = await db.select<Array<any>>('SELECT * FROM users LIMIT $1 OFFSET $2', [10, 0])
7675
```
7776

77+
## Contribute
78+
79+
Contributions are welcome! please open issues and pull request :)
80+
7881
## License
7982

8083
[MIT](LICENSE)

0 commit comments

Comments
 (0)