-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This object is in zombie state #1
Comments
Same problem with a C++/ATL program : HRESULT CLoop::LoopDrop(OracleDataSource* dataSource)
} Error occurs in the first call of MoveNext with the error code E_UNEXPECTED This error seems to be raised in Rowset::GetNextRows because m_nStatus==1 |
I wonder why DoCASCCICommit (TransactionLocal.cpp) is calling TxnCallback
|
@damiendubreuil @novascorbe like this
End Sub |
Thank you for this nice workaround but the macro is not ours and we don't have the right to change it.
And now the driver works like a charm. |
Hello,
A program made in VB with Excel causes error 'This object is in zombie state' when there are requests in loops.
The following piece of program is an example of the problem. The error appears when 'drop table' are execute in do while loop.
Set r = ExecuteQuery("select table_name from user_tables where table_name in ('T_SSTAB_TEMP','T_ELT_TEMP', " _ & "'T_SSTABINST_SAV', 'T_SSTABINST_MOD', 'T_ELTINST_SAV', 'T_ELTINST_MOD')")
Do While Not r.EOF
ExecuteQuery ("drop table " & r.Fields(0))
r.MoveNext
Loop
On this topic, the problem seems to be the same.
Thanks for your answer.
The text was updated successfully, but these errors were encountered: