Package overit.geocall.da
Annotation Interface DAO.Table
- Enclosing class:
DAO
Annotation used to set the name of the table on which the specific DAO acts.
It must be filled with the string that represents the name of the table
on which you want to access and operate. It can be even a string that defines a join between
two tables, for example
AUSER JOIN TUSER ON AUSEID_TUSE = TUSEID; in this case
each operation performed with the DAO will act on the view created by the join clause.-
Required Element Summary
Required Elements
-
Element Details
-
value
String value
-