Interface JKUpdater


public interface JKUpdater
This interface defines methods for updating database records using prepared statements.
Version:
1.0
Author:
Dr. Jalal H. Kiswani
  • Method Summary

    Modifier and Type
    Method
    Description
    This method gets the SQL statement that represents the update operation.
    default Boolean
    This method is yet to be implemented.(TBI).
    void
    This method sets the parameters of a prepared statement for the update operation.
  • Method Details

    • getStatement

      String getStatement()
      This method gets the SQL statement that represents the update operation.
      Returns:
      the SQL statement that represents the update operation.
    • setParameters

      void setParameters(PreparedStatement ps) throws SQLException
      This method sets the parameters of a prepared statement for the update operation.
      Parameters:
      ps - Specifies the PreparedStatement to set parameters on.
      Throws:
      SQLException - if a database access error occurs.
    • isMultiTenant

      default Boolean isMultiTenant()
      This method is yet to be implemented.(TBI).
      Returns:
      null.