FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Fixed the return type of SQLiteCursor#getBlob(). · drydart/flutter_sqlcipher@f7a68fa · GitHub

Commit f7a68fa

Browse files
committed
Fixed the return type of SQLiteCursor#getBlob().
1 parent b1679d0 commit f7a68fa

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [0.3.0] - 2018-12-05
10-
### Added
10+
### Changed
11+
- `SQLiteCursor#getBlob()` now returns a `Uint8List`, not a `ByteBuffer`
1112

1213
## [0.2.5] - 2018-12-05
1314
### Added

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Cross-Reference
190190
| `int` | `SQLiteCursor#getInt()` | `INTEGER` | - |
191191
| `double` | `SQLiteCursor#getDouble()` | `REAL` | - |
192192
| `String` | `SQLiteCursor#getString()` | `TEXT` | - |
193-
| `ByteBuffer` | `SQLiteCursor#getBlob()` | `BLOB` | - |
193+
| `Uint8List` | `SQLiteCursor#getBlob()` | `BLOB` | - |
194194
| `DateTime` | `SQLiteCursor#getDateTime()` | `TEXT` | ISO-8601 `"YYYY-MM-DD HH:MM:SS.SSS"` |
195195
| `DateTime` | `SQLiteCursor#getDateTime()` | `INTEGER` | Seconds since `1970-01-01T00:00:00Z` |
196196

‎pubspec.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_android: ^0.1.14
13+
flutter_android: ^0.2.0
1414
meta: ^1.1.6
1515
dev_dependencies:
1616
flutter_test:

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL