borland Packages Class Hierarchy sql.dataset Package Index
ResolutionException class
java.lang.Object
+----java.lang.Throwable
+----java.lang.Exception
+----borland.jbcl.dataset.DataSetException
+----borland.sql.dataset.ResolutionException
About the ResolutionException class
Variables Constructors Properties Methods
Implements ChainedException, Serializable
The ResolutionException class defines error constants and behavior associated with error conditions encountered when resolving changes made to data back to its data source. It extends DataSetException and may include chained exceptions.
See also:
DataSetException, ExceptionDialog
ResolutionException variables
Variables implemented in this class
ResolutionException constructors
ResolutionException properties
*Read-only properties **Write-only properties
Properties implemented in this class
ResolutionException methods
- addExceptionListener(borland.jbcl.dataset.ExceptionListener)
- badProcedureProperties()
- badQueryProperties()
- classNotFoundException(java.lang.ClassNotFoundException)
- connectionDescriptorNotSet()
- connectionNotClosed(java.lang.Exception)
- dataSetHasNoTable()
- dataSetNotOpen()
- driverNotLoadedAtRuntime(java.lang.String)
- driverNotLoadedInDesign(java.lang.String)
- handleException(borland.jbcl.dataset.DataSet, java.awt.Component, java.lang.Exception)
- handleException(borland.jbcl.dataset.DataSet, java.awt.Component, java.lang.Exception, boolean)
- handleException(java.awt.Component, java.lang.Exception, boolean)
- handleException(java.lang.Exception)
- handleException(java.lang.Exception, boolean)
- insufficientRowId()
- invalidColumnType(int)
- invalidSQLType(int)
- IOException(java.io.IOException)
- mismatchedParameterFormat()
- mismatchParamResult()
- missingMasterDataSet()
- mkUrlNotFound(java.lang.String, java.lang.Exception)
- mkUrlNotFoundInDesign(java.lang.String, java.lang.Exception)
- multipleRowsAffected(java.lang.String)
- needProcedureProvider()
- needQueryProvider()
- noDatabaseOnResolver()
- nonExistentRowId()
- noResultSet()
- noRowsAffected(java.lang.String)
- notDatabaseResolver()
- notSelectQuery()
- notSortable()
- noUpdatableColumns()
- noWhereClause(borland.jbcl.dataset.DataSet)
- onePassInputStream(borland.jbcl.dataset.Column)
- parameterCountMismatch()
- printStackTrace()
- printStackTrace(java.io.PrintStream)
- procedureFailed(java.lang.Exception)
- procedureInProcess()
- providerFailed(java.lang.Exception)
- providerOwned()
- queryFailed(java.lang.Exception)
- readOnlyStore(java.lang.String)
- removeExceptionListener(borland.jbcl.dataset.ExceptionListener)
- resolveFailed(java.lang.Exception)
- SQLException(java.sql.SQLException)
- throwException(int, java.lang.Exception)
- throwExceptionChain(java.lang.Exception)
- throwQueryInProcess()
- throwQueryNotExecuted()
- throwTransactionIsolationLevelNotSupported()
- throwWrongDatabase()
- unexpectedEndOfQuery()
- unknownColumnName(java.lang.String)
- unknownDetailName(java.lang.String)
- unknownParamName(java.lang.String)
- unrecognizedDataType()
ResolutionException variables
dataSet
public transient DataSet dataSet
The DataSet object that generated the ResolutionException.
DELETE_FAILED
public static final int DELETE_FAILED = BASE+2
Attempted to delete a value in a DataSet that has been set to readOnly.
INSERT_FAILED
public static final int INSERT_FAILED = BASE+1
Attempted to insert a value in a DataSet that has been set to readOnly.
UPDATE_FAILED
public static final int UPDATE_FAILED = BASE+3
Master rows that have detail rows linked to them cannot be deleted or have their linking columns modified.
ResolutionException constructors
ResolutionException(int, borland.jbcl.dataset.DataSet, java.lang.String, java.lang.Exception)
public ResolutionException(int errorCode, borland.jbcl.dataset.DataSet dataSet, java.lang.String message, java.lang.Exception ex)
Constructs a ResolutionException object with the following parameters:
Parameters:
- errorCode
- The integer value associated with this error.
- dataSet
- The DataSet object that generated this error.
- message
- The string message associated with this error.
- ex
- The Exception object.
ResolutionException properties
dataSet
public DataSet getDataSet()
Read-only property that returns the DataSet object that generated the ResolutionException.