Package overit.geocall.sql
Interface DBFieldMap
- All Known Implementing Classes:
StandardDBFieldMap
public interface DBFieldMap
Interface that defines a generic map object between the fields of a table in memory and a server database table
-
Method Summary
Modifier and TypeMethodDescriptiongetColumnName(String dbname) Returns the name of the virtual field name in memory starting from the name of the field of the same table in the server databasegetDBColumnName(String name) Returns the name of the server database table field starting from a virtual field name of the same table in memory
-
Method Details
-
getDBColumnName
Returns the name of the server database table field starting from a virtual field name of the same table in memory- Parameters:
name- Name of the field of the table in memory- Returns:
- Name of the field of the server database table
-
getColumnName
Returns the name of the virtual field name in memory starting from the name of the field of the same table in the server database- Parameters:
dbname- Name of the field of the server database table- Returns:
- Name of the field of the table in memory
-