hi I use a java library(jwpl) to connect a database of mysql. number of queries that I can be asked on a certain term is limited. for example query="select * from table where keyword= term" can be asked for about 20 times and after that it doesn't work at all. what should I do? should I change cache parameters of mysql? and how? thanks in advance

link|improve this question
2  
What exactly does "doesn't work at all" mean? What happens? – Jon Skeet Jan 8 '11 at 13:34
feedback

1 Answer

Is it possible that you're using a connection pool but failing to close the connections (and thus not returning them to the pool)?

Check that you're closing everything in finally blocks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.