Uses of Class
com.framework.jdto.exceptions.DAOException

Packages that use DAOException
com.framework.jdto.jdbc.wrapper   
 

Uses of DAOException in com.framework.jdto.jdbc.wrapper
 

Methods in com.framework.jdto.jdbc.wrapper that throw DAOException
 void StatementWrapper.setSql(java.lang.String sql)
          Sets the sql string to the current StatementWrapper Object and associates it with the java.sql.Statement.
 void StatementWrapper.setSql(java.lang.String sql, boolean addToTransaction)
          Sets the sql string to the current StatementWrapper Object and associates it with the java.sql.Statement.
 java.lang.Object StatementWrapper.executeQuery(RowMapper row)
          Executes the given SQL statement in the current StatementWrapper Object, which returns a single java.lang.Object type of object.
 int StatementWrapper.executeUpdate()
          Executes the given SQL statement in the current StatementWrapper Object, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
 boolean StatementWrapper.execute()
          Executes the given SQL statement in the current StatementWrapper Object, which returns a boolean value.
 void PreparedStatementWrapper.setSql(java.lang.String sql)
          Sets the sql string to the current PreparedStatementWrapper Object and associates it with the java.sql.PreparedStatement.
 void PreparedStatementWrapper.setSql(java.lang.String sql, boolean addToTransaction)
          Sets the sql string to the current PreparedStatementWrapper Object and associates it with the java.sql.PreparedStatement.
 java.lang.Object PreparedStatementWrapper.executeQuery(RowMapper row)
          Executes the SQL query in this PreparedStatementWrapper object and returns an Object type of object generated by the query. it takes a RowMapper Object as parameter.This method closes the ResultSet, PreparedStatement and Connection before returning the Object value.
 int PreparedStatementWrapper.executeUpdate()
          Executes the SQL statement in this PreparedStatementWrapper object, which must be an SQL INSERT, UPDATE or DELETE statement or an SQL statement that returns nothing, such as a DDL statement.
 boolean PreparedStatementWrapper.execute()
          Calls the execute() method of java.sql.PreparedStatement and closes the PreparedStatement and connection before returning the boolean value.
 void PreparedStatementWrapper.setNull(int parameterIndex, int sqlType)
          Sets the designated parameter to SQL NULL.
 void PreparedStatementWrapper.setBoolean(int parameterIndex, boolean x)
          Sets the designated parameter to boolean value.
 void PreparedStatementWrapper.setByte(int parameterIndex, byte x)
          Sets the designated parameter to byte value.
 void PreparedStatementWrapper.setShort(int parameterIndex, short x)
          Sets the designated parameter to short value.
 void PreparedStatementWrapper.setInt(int parameterIndex, int x)
          Sets the designated parameter to int value.
 void PreparedStatementWrapper.setLong(int parameterIndex, long x)
          Sets the designated parameter to long value.
 void PreparedStatementWrapper.setFloat(int parameterIndex, float x)
          Sets the designated parameter to float value.
 void PreparedStatementWrapper.setDouble(int parameterIndex, double x)
          Sets the designated parameter to double value.
 void PreparedStatementWrapper.setBigDecimal(int parameterIndex, java.math.BigDecimal x)
          Sets the designated parameter to BigDecimal value.
 void PreparedStatementWrapper.setString(int parameterIndex, java.lang.String x)
          Sets the designated parameter to String value.
 void PreparedStatementWrapper.setBytes(int parameterIndex, byte[] x)
          Sets the designated parameter to array of bytes.
 void PreparedStatementWrapper.setDate(int parameterIndex, java.sql.Date x)
          Sets the designated parameter to Date value.
 void PreparedStatementWrapper.setTime(int parameterIndex, java.sql.Time x)
          Sets the designated parameter to SQL Time value.
 void PreparedStatementWrapper.setTimestamp(int parameterIndex, java.sql.Timestamp x)
          Sets the designated parameter to SQL TimeStamp value.