diff options
author | Javier Fernandez <jfernandez@igalia.com> | 2013-06-04 13:54:48 +0000 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-16 16:40:07 +0200 |
commit | 1d7ad3244504249824cdfe8f88333a1a60773861 (patch) | |
tree | 810c4c2235a855d5fab82970a6178c387f246eff /connectivity/source/drivers/firebird/FResultSet.cxx | |
parent | fd3271899c0b56ff0051e43db6adf3c22d0b6b8b (diff) |
Executing again a PreparedStatement.
Change-Id: I10afa596ed0464e14c4fd95d3a7fb687451a10b4
Diffstat (limited to 'connectivity/source/drivers/firebird/FResultSet.cxx')
-rw-r--r-- | connectivity/source/drivers/firebird/FResultSet.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/firebird/FResultSet.cxx b/connectivity/source/drivers/firebird/FResultSet.cxx index 6a2dcabde8a9..e64019e9da4a 100644 --- a/connectivity/source/drivers/firebird/FResultSet.cxx +++ b/connectivity/source/drivers/firebird/FResultSet.cxx @@ -143,8 +143,8 @@ OResultSet::OResultSet(OStatement_Base* pStmt) if (pr_error(status, "fetch data")) return; } - if (isc_dsql_free_statement(status, &stmt, DSQL_drop)) - if (pr_error(status, "fetch data")) + if (isc_dsql_free_statement(status, &stmt, DSQL_close)) + if (pr_error(status, "free statement")) return; } // ------------------------------------------------------------------------- |