Uses of Class
org.example.project.database.UndefinedStatementException

Uses of UndefinedStatementException in org.example.project.database
 

Methods in org.example.project.database that throw UndefinedStatementException
 void GenericTable.clearPreparedParameters(java.lang.String id)
          Clears the parameters that have been associated with the prepared statement that is identified by the given ID.
 void GenericTable.executePreparedQuery(java.lang.String id)
          Executes the prepared statement associated with the given ID.
 int GenericTable.executePreparedUpdate(java.lang.String id)
          Executes the prepared statement associated with the given ID.
 void GenericTable.getPreparedGeneratedKeys(java.lang.String id)
          Populates the key result set with any auto-generated keys created as a result of executing the prepared query using GenericTable.executePreparedUpdate(String).
 void GenericTable.setArray(java.lang.String id, int parameterIndex, java.sql.Array x)
          Sets the designated parameter of the specified PreparedStatement to the given Array object.
 void GenericTable.setAsciiStream(java.lang.String id, int parameterIndex, java.io.InputStream x, int length)
          Sets the designated parameter of the specified PreparedStatement to the given input stream, which will have the specified number of bytes.
 void GenericTable.setBigDecimal(java.lang.String id, int parameterIndex, java.math.BigDecimal x)
          Sets the designated parameter of the specified PreparedStatement to the given java.math.BigDecimal value.
 void GenericTable.setBinaryStream(java.lang.String id, int parameterIndex, java.io.InputStream x, int length)
          Sets the designated parameter of the specified PreparedStatement to the given input stream, which will have the specified number of bytes.
 void GenericTable.setBlob(java.lang.String id, int parameterIndex, java.sql.Blob x)
          Sets the designated parameter of the specified PreparedStatement to the given Blob object.
 void GenericTable.setBoolean(java.lang.String id, int parameterIndex, boolean x)
          Sets the designated parameter of the specified PreparedStatement to the given Java boolean value.
 void GenericTable.setByte(java.lang.String id, int parameterIndex, byte x)
          Sets the designated parameter of the specified PreparedStatement to the given Java byte value.
 void GenericTable.setBytes(java.lang.String id, int parameterIndex, byte[] x)
          Sets the designated parameter of the specified PreparedStatement to the given Java array of bytes.
 void GenericTable.setCharacterStream(java.lang.String id, int parameterIndex, java.io.Reader x, int length)
          Sets the designated parameter of the specified PreparedStatement to the given Reader object, which is the given number of characters long.
 void GenericTable.setClob(java.lang.String id, int parameterIndex, java.sql.Clob x)
          Sets the designated parameter of the specified PreparedStatement to the given Clob object.
 void GenericTable.setDate(java.lang.String id, int parameterIndex, java.sql.Date x)
          Sets the designated parameter of the specified PreparedStatement to the given java.sql.Date value.
 void GenericTable.setDate(java.lang.String id, int parameterIndex, java.sql.Date x, java.util.Calendar cal)
          Sets the designated parameter of the specified PreparedStatement to the given java.sql.Date value, using the given Calendar object.
 void GenericTable.setDouble(java.lang.String id, int parameterIndex, double x)
          Sets the designated parameter of the specified PreparedStatement to the given Java double value.
 void GenericTable.setFloat(java.lang.String id, int parameterIndex, float x)
          Sets the designated parameter of the specified PreparedStatement to the given Java float value.
 void GenericTable.setInt(java.lang.String id, int parameterIndex, int x)
          Sets the designated parameter of the specified PreparedStatement to the given Java int value.
 void GenericTable.setLong(java.lang.String id, int parameterIndex, long x)
          Sets the designated parameter of the specified PreparedStatement to the given Java long value.
 void GenericTable.setNull(java.lang.String id, int parameterIndex, int sqlType)
           Sets the designated parameter of the specified PreparedStatement to SQL NULL.
 void GenericTable.setNull(java.lang.String id, int parameterIndex, int sqlType, java.lang.String typeName)
          Sets the designated parameter of the specified PreparedStatement to SQL NULL.
 void GenericTable.setObject(java.lang.String id, int parameterIndex, java.lang.Object x)
          Sets the value of the designated parameter for the given PreparedStatement using the given object.
 void GenericTable.setObject(java.lang.String id, int parameterIndex, java.lang.Object x, int targetSqlType)
          Sets the value of the designated parameter for the specified PreparedStatement with the given object.
 void GenericTable.setObject(java.lang.String id, int parameterIndex, java.lang.Object x, int targetSqlType, int scale)
          Sets the value of the designated parameter for the given PreparedStatement using the given object.
 void GenericTable.setRef(java.lang.String id, int parameterIndex, java.sql.Ref x)
          Sets the designated parameter for the specified PreparedStatement to the given REF(<structured-type>) value.
 void GenericTable.setShort(java.lang.String id, int parameterIndex, short x)
          Sets the designated parameter for the specified PreparedStatement to the given Java short value.
 void GenericTable.setString(java.lang.String id, int parameterIndex, java.lang.String x)
          Sets the designated parameter for the specified PreparedStatement to the given Java String value.
 void GenericTable.setTime(java.lang.String id, int parameterIndex, java.sql.Time x)
          Sets the designated parameter for the specified PreparedStatement to the given java.sql.Time value.
 void GenericTable.setTime(java.lang.String id, int parameterIndex, java.sql.Time x, java.util.Calendar cal)
          Sets the designated parameter for the specified PreparedStatement to the given java.sql.Time value, using the given Calendar object.
 void GenericTable.setTimestamp(java.lang.String id, int parameterIndex, java.sql.Timestamp x)
          Sets the designated parameter for the specified PreparedStatement to the given java.sql.Timestamp value.
 void GenericTable.setTimestamp(java.lang.String id, int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal)
          Sets the designated parameter for the specified PreparedStatement to the given java.sql.Timestamp value, using the given Calendar object.
 void GenericTable.setURL(java.lang.String id, int parameterIndex, java.net.URL x)
          Sets the designated parameter for the specified PreparedStatement to the given java.net.URL value.