Interface ItemPreparedStatementSetter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      voidsetValues​(T item, java.sql.PreparedStatement ps)
      Set parameter values on the given PreparedStatement as determined from the provided item.
    • Method Detail

      • setValues

        void setValues​(T item,
                       java.sql.PreparedStatement ps)
                throws java.sql.SQLException
        Set parameter values on the given PreparedStatement as determined from the provided item.
        Parameters:
        item - the item to obtain the values from
        ps - the PreparedStatement to invoke setter methods on
        Throws:
        java.sql.SQLException - if a SQLException is encountered (i.e. there is no need to catch SQLException)