com.fuse.storage.sql
Interface SQLDataObject

All Superinterfaces:
FUSEDataObject, java.io.Serializable
All Known Implementing Classes:
SQLAccess, SQLFUSEUser

public interface SQLDataObject
extends FUSEDataObject

SQLDatabaseObject can insert, update and delete itself through a JDBC connection.


Method Summary
 void delete(java.sql.Connection connection)
           
 void insert(java.sql.Connection connection)
           
 void update(java.sql.Connection connection)
           
 
Methods inherited from interface com.fuse.storage.FUSEDataObject
getCacheKey, getType
 

Method Detail

insert

void insert(java.sql.Connection connection)
            throws DatabaseException
Throws:
DatabaseException

update

void update(java.sql.Connection connection)
            throws DatabaseException
Throws:
DatabaseException

delete

void delete(java.sql.Connection connection)
            throws DatabaseException
Throws:
DatabaseException