Uses of Class
org.liquidsite.util.db.DatabaseDataException

Packages that use DatabaseDataException
org.liquidsite.core.data   
org.liquidsite.util.db   
 

Uses of DatabaseDataException in org.liquidsite.core.data
 

Methods in org.liquidsite.core.data that throw DatabaseDataException
abstract  void AbstractData.Parameter.transfer(DatabaseResults.Row row, AbstractData data)
          Transfers this parameter from a database row to a data object.
 void AbstractData.BooleanParameter.transfer(DatabaseResults.Row row, AbstractData data)
          Transfers this parameter from a database row to a data object.
 void AbstractData.DateParameter.transfer(DatabaseResults.Row row, AbstractData data)
          Transfers this parameter from a database row to a data object.
 void AbstractData.IntegerParameter.transfer(DatabaseResults.Row row, AbstractData data)
          Transfers this parameter from a database row to a data object.
 void AbstractData.StringParameter.transfer(DatabaseResults.Row row, AbstractData data)
          Transfers this parameter from a database row to a data object.
 

Uses of DatabaseDataException in org.liquidsite.util.db
 

Methods in org.liquidsite.util.db that throw DatabaseDataException
 DatabaseResults.Row DatabaseResults.getRow(int row)
          Returns a specified row in the result.
 java.lang.Object DatabaseResults.Row.get(int column)
          Returns the row value in the specified column.
 java.lang.Object DatabaseResults.Row.get(java.lang.String column)
          Returns the row value in the specified column.
 boolean DatabaseResults.Row.getBoolean(int column)
          Returns the row boolean value in the specified column.
 boolean DatabaseResults.Row.getBoolean(java.lang.String column)
          Returns the row boolean value in the specified column.
 java.util.Date DatabaseResults.Row.getDate(int column)
          Returns the row date value in the specified column.
 java.util.Date DatabaseResults.Row.getDate(java.lang.String column)
          Returns the row date value in the specified column.
 int DatabaseResults.Row.getInt(int column)
          Returns the row integer value in the specified column.
 int DatabaseResults.Row.getInt(java.lang.String column)
          Returns the row integer value in the specified column.
 long DatabaseResults.Row.getLong(int column)
          Returns the row long value in the specified column.
 long DatabaseResults.Row.getLong(java.lang.String column)
          Returns the row long value in the specified column.
 java.lang.String DatabaseResults.Row.getString(int column)
          Returns the row string value in the specified column.
 java.lang.String DatabaseResults.Row.getString(java.lang.String column)
          Returns the row string value in the specified column.