Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a simple health check page that ensures my application can connect to mysql.

I'm using jdbctemplate, what query do you suggest I perform that will not throw an error if the table is empty or anything, just something that ensures my spring app can connect to the database.

share|improve this question
i would recommend one that doesn't hit every record of a table. for instance, in oracle, you could do 'select 1 from dual' or in mySQL something like 'select 1'. – jeff Nov 16 '12 at 3:32

2 Answers

up vote 1 down vote accepted

You could try select 1 from my_table

share|improve this answer
using what jdbctemplate method? it seems many throw exceptions if it returns no row. – Blankman Nov 16 '12 at 3:32
Presumably the execute or query method. Are you asking for help figuring out how to use jdbctemplate? – jdigital Nov 16 '12 at 3:34
jdigital just making sure as you don't want a healthcheck page erroring out for no reason. – Blankman Nov 16 '12 at 3:39
If table does not exist then this will throw and exception. Try the answer which I posted that may help you to check the connectivity. – NullPointerException Nov 16 '12 at 3:51

You can execute this below query.

SELECT COUNT(*) col FROM dual WHERE 1=0
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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