summaryrefslogtreecommitdiff
path: root/docs/changelog.md
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2022-01-16 18:13:31 +0100
committerGitHub <noreply@github.com>2022-01-16 18:13:31 +0100
commite8522adeb44b2490b4293776704dd29627d92837 (patch)
treec489f3230af73bdb0dbd75a145a214e2cd6b34c3 /docs/changelog.md
parent108609f66113a59c5e0bf97b040f5e89d50cebc1 (diff)
downloadadodb-e8522adeb44b2490b4293776704dd29627d92837.tar.gz
adodb-e8522adeb44b2490b4293776704dd29627d92837.tar.bz2
adodb-e8522adeb44b2490b4293776704dd29627d92837.zip
Add ADOConnection::releaseStatement() method
This allows Oracle users to avoid reaching the maximum open cursors limit by releasing the statement resource allocated by oci_parse(), and prevent occurrence of an ORA-01000 error. The resource is cleared (set to null) after freeing statement, to avoid keeping a resource of type Unknown in the statement. Fixes #770
Diffstat (limited to 'docs/changelog.md')
-rw-r--r--docs/changelog.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/changelog.md b/docs/changelog.md
index 0eff4f20..fdc76a71 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -26,6 +26,8 @@ Older changelogs:
[#676](https://github.com/ADOdb/ADOdb/issues/676)
- mssql: implement offsetDate() method
[#698](https://github.com/ADOdb/ADOdb/issues/698)
+- oci8: new ADOConnection::releaseStatement() method
+ [#770](https://github.com/ADOdb/ADOdb/issues/770)
- sqlite3 performance monitor stub
[#661](https://github.com/ADOdb/ADOdb/issues/661)
- sqlite: support blob handling