Skip to content

Commit

Permalink
[sqflite_common_ffi] v2.3.1 on sqlite3 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Dec 5, 2023
1 parent 51a3ca2 commit 9b90885
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions sqflite_common_ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.3.1

* `sqflite3: >= 2.2.0`
* `sdk: >= 3.2.0`

## 2.3.0+4

* Support `PRAGMA sqflite -- db_config_defensive_off`
Expand Down
2 changes: 1 addition & 1 deletion sqflite_common_ffi/lib/src/sqflite_ffi_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ class SqfliteFfiDatabase {

/// Return the count of updated row.
int _getUpdatedRows() {
var rowCount = _ffiDb.getUpdatedRows();
var rowCount = _ffiDb.updatedRows;
if (logLevel >= sqfliteLogLevelSql) {
print('$_prefix Modified $rowCount rows');
}
Expand Down
6 changes: 3 additions & 3 deletions sqflite_common_ffi/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: sqflite_common_ffi
homepage: https://github.com/tekartik/sqflite/tree/master/sqflite_common_ffi
description: sqflite ffi based implementation, for desktop and units tests.
version: 2.3.0+4
version: 2.3.1
funding:
- https://github.com/sponsors/alextekartik

Expand All @@ -16,10 +16,10 @@ topics:
- database

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.2.0 <4.0.0'

dependencies:
sqlite3: '>=2.1.0 <4.0.0'
sqlite3: '>=2.2.0 <4.0.0'
sqflite_common: '>=2.5.0+2 <4.0.0'
synchronized: '>=3.0.0 <5.0.0'
path: '>=1.8.0 <3.0.0'
Expand Down

0 comments on commit 9b90885

Please sign in to comment.