I am using JProfiler to view all the JDBC calls in my application that’s using Hibernate. It turns out that the top 2 hot spots are “unknown” and “select 1“. Any ideas what they are?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The “select 1” is a check to see if the connection is still valid. Can also be “select 1 from dual” or “select 1+1” depending on database used.