Source Code : Determining If a SQL Warning Occurred

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Determining If a SQL Warning Occurred

  

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;

public class Main {
  public static void main(String[] argv) throws Exception {

    String driverName = "com.jnetdirect.jsql.JSQLDriver";
    Class.forName(driverName);

    String serverName = "127.0.0.1";
    String portNumber = "1433";
    String mydatabase = serverName + ":" + portNumber;
    String url = "jdbc:JSQLConnect://" + mydatabase;
    String username = "username";
    String password = "password";

    Connection connection = DriverManager.getConnection(url, username, password);

    try {
      SQLWarning warning = connection.getWarnings();
      while (warning != null) {
        String message = warning.getMessage();
        String sqlState = warning.getSQLState();
        int errorCode = warning.getErrorCode();
        warning = warning.getNextWarning();
      }
      Statement stmt = connection.createStatement();
      warning = stmt.getWarnings();
      if (warning != null) {

      }
      ResultSet resultSet = stmt.executeQuery("SELECT * FROM my_table");
      while (resultSet.next()) {
        warning = resultSet.getWarnings();
        if (warning != null) {
        }
      }
    } catch (SQLException e) {
    }

  }
}

   
    
  

Thank with us