Google News
logo
JDBC - Interview Questions
What is SQL Warning? How to return SQL warnings in a JDBC program?
SQLWarning is a subclass of SQLException that we can get by calling the getWarnings () method on Connection , Statement , ResultSet  objects  . SQL Warnings does not stop the execution of the query, but displays warning messages for the user.
Advertisement