electric.sql.mapping
Interface ITable
- public interface ITable
ITable provides a generic interface for classes that
will encapsulate interaction with a specific jdbc table.
An ITable should be aware of it's underlying table structure
and be capable of serializing an object to/from that table(s).
- Author:
- webMethods
Method Summary |
void |
clear()
|
void |
delete(java.lang.Object key)
|
void |
insert(java.lang.Object value)
|
java.lang.Object |
select(java.lang.Object key)
|
insert
public void insert(java.lang.Object value)
throws java.sql.SQLException
- Parameters:
value
-
- Throws:
java.sql.SQLException
select
public java.lang.Object select(java.lang.Object key)
throws java.sql.SQLException
- Parameters:
key
-
- Throws:
java.sql.SQLException
delete
public void delete(java.lang.Object key)
throws java.sql.SQLException
- Parameters:
key
-
- Throws:
java.sql.SQLException
clear
public void clear()
throws java.sql.SQLException
- Throws:
java.sql.SQLException
copyright© 2001-2004 by webMethods All Rights Reserved.