Re: [Sablevm-developer] SableVM hangs during database connection
Brought to you by:
egagnon
From: Roman K. <ro...@on...> - 2004-06-17 19:12:24
|
Hi, > >>I found another issue, this time related to a database connection with > >>MySQL. During sending an update, the hole connection seems to hang > >>infinitely. > > > > > > Update: I've done a lot of tests, during which I got it running on > > Linux. I used a new MySQL driver for this. Unfortunately my testprog > > does still not run under FreeBSD. I will attach my testprog. > > Hi Roman, > > I think you forgot to attach the test case. Oh, sorry. As always, I forgot the attachment ;-) In order to run the test, you need a MySQL database set up this way: CREATE DATABASE test; GRANT ALL PRIVILEGES ON test.* TO test IDENTIFIED BY 'test'; GRANT ALL PRIVILEGES ON test.* TO test@localhost IDENTIFIED BY 'test'; USE test; CREATE TABLE ( test LONGBLOB ); and of course you need the MySQL JDBC driver (I used version 3.0.14). I hope, someone is willing and able to run this. Cheers, Roman |