ruby/mysql connection close problem

A

Adam Hurlburt

Hello,

I am using the Ruby/mysql module installed from gems and everything is
working fine except the connections arent closing. I was under the
impression that upon completion of a script the database handle will
close automatically but regardless even by explicitly stating
dbh.close() at the end of the script I cant get the database to close
the connection. This is obviously a problem as the limit of connections
is eventually reached.

I am running apache2 on ubuntu 7.10, I am calling the ruby script (that
connects and queries the database) from embedded ruby in an .rhtml file.

I do not have the code available right now as I am posting from another
computer but can post the code if anyone thinks it will help.

Any help appreciated,

Thanks
 
R

Roger Pack

I am running apache2 on ubuntu 7.10, I am calling the ruby script (that
connects and queries the database) from embedded ruby in an .rhtml file.

I do not have the code available right now as I am posting from another
computer but can post the code if anyone thinks it will help.

Any help appreciated,

Thanks


I suppose if you got really desperate you could use mysqlplus then hard
force close the connection.

descriptor_number = conn.socket
a = IO.new(descriptor_number)
a.close
Maybe.
-=R
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,969
Messages
2,570,161
Members
46,710
Latest member
bernietqt

Latest Threads

Top