Displaying 2 results from an estimated 2 matches for "sqlfreeenv".
2009 Aug 21
3
Core dump gets created while accessing voicemail
...2
mysql-server-5.0.45-7.el5
Following are the traces i found while troubleshooting the issue.
1) I found a .lock file created in the INBOX folder of my mailbox
2) The following core dump gets created during the first time the
voicemessage access got failed.
* (gdb) bt
*#0 0x000000322b417649 in SQLFreeEnv () from /usr/lib64/libodbc.so.1
#1 0x000000322b417b5c in SQLFreeHandle () from /usr/lib64/libodbc.so.1
#2 0x00002aaac132ccdd in message_exists (dir=<value optimized out>,
msgnum=<value optimized out>)
from /usr/lib/asterisk/modules/app_voicemail.so
#3 0x00002aaac132dab2 in save_to...
2006 Sep 19
1
RODBC Connections closed automatically in background
...someLongCalculation(data)
anotherDatabaseOperation(db, data2) # This often fails b/c the db is no longer open.
odbcClose(db)
}
I see some output:
Warning: closing unused RODBC handle 9
Warning: [RODBC] Error SQLDisconnect
Warning: [RODBC] Error SQLFreeconnect
Warning: [RODBC] Error in SQLFreeEnv
Error in odbcGetErrMsg(channel) : first argument is not an open RODBC channel
I suspect that during the call to someLongCalculation(), R
considers the database connection as "unused", and therefore,
closes the connection, which prevents me from using the
connection in the call to anoth...