For example:
select name from person where id=2;
I wand to know if this row exists, and depending on its existence perform a certain task.
I wan to do this using jdbc.
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.
Use
PreparedStatementto invoke this select query,After the successful execution of query you would have instance of
ResultSetreturned, you could check by invokingnext()if it returns true it means there was a row selected