SilverStream
Application Server 3.5

com.sssw.srv.api
Interface AgiTable


public interface AgiTable

Server-side interface that represents a table in a database.

When table events are fired, the source of those events (available via evt.getSource()) will be an object implementing this interface.

An object implementing this interface is returned by the AgiDatabase.getTable() method. Also AgiDatabase.getTables() returns an Enumeration of objects implementing this interface.


Method Summary
 String getName()
          Return the name of this table.
 

Method Detail

getName

public String getName()
Return the name of this table.
Example:
     String tableName = table.getName();
 

SilverStream
Application Server 3.5