Skip to content

Commit d57e90d

Browse files
committed
Fix the problem that statements were not released correctly
1 parent 8d4164f commit d57e90d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.1.11]
2+
3+
* Fix the problem that statements were not released correctly
4+
15
## [2.1.10]
26

37
* Update mysql_client_plus version to 0.1.1
@@ -124,7 +128,7 @@
124128
## [1.0.3]
125129

126130
* Fix Bug [#3](https://github.com/biner88/mysql_utils/issues/3)
127-
* Add Where `in`, `between`, `notbetween` and demo.
131+
* Add Where `in`, `between`, `notbetween` and demo.
128132

129133
## [1.0.2]
130134

lib/src/mysql_utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ class MysqlUtils {
702702
try {
703703
resultSet = await stmt.execute(whereValues);
704704
} finally {
705-
// await stmt.deallocate();
705+
await stmt.deallocate();
706706
}
707707
} else {
708708
resultSet = isPool

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mysql_utils
22
description: This is [mysql_client_plus] help library,This makes mysql easier to use and simple.
3-
version: 2.1.10
3+
version: 2.1.11
44
homepage: https://github.com/biner88/mysql_utils
55
repository: https://github.com/biner88/mysql_utils
66
issue_tracker: https://github.com/biner88/mysql_utils/issues

0 commit comments

Comments
 (0)