Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b4a9a3c

Browse files
committed
Enhanced the README a bit.
1 parent e8b43e5 commit b4a9a3c

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

‎README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@ of database files.
1515
Features
1616
--------
1717

18-
- Implements fully-encrypted SQLite databases stored on disk or in memory.
18+
- Implements [fully-encrypted](https://www.zetetic.net/sqlcipher/design/)
19+
SQLite databases stored on disk or in memory.
20+
21+
- Supports booleans, doubles, integers, strings, blobs, and timestamps.
1922

2023
- Provides a high-fidelity subset of the
2124
[`android.database.sqlite`](https://developer.android.com/reference/android/database/sqlite/package-summary)
2225
API to aid Android developers migrating to Flutter.
2326

24-
- Supports booleans, doubles, integers, strings, blobs, and timestamps.
27+
- Facilitates porting existing Android database code to Flutter.
2528

2629
Compatibility
2730
-------------
@@ -48,6 +51,14 @@ var cursor = await db.rawQuery("SELECT 1 AS a, 2 as b, 3 AS c");
4851
await DatabaseUtils.dumpCursor(cursor);
4952
```
5053

54+
### Iterating the rows in a returned cursor
55+
56+
```dart
57+
for (var row in await db.rawQuery("SELECT 1 AS a, 2 as b, 3 AS c")) {
58+
print(row); // prints: {a: 1, b: 2, c: 3}
59+
}
60+
```
61+
5162
### Using a bundled database from the app's assets
5263

5364
TODO

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /