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 Type
    Method
    Description
    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
    Returns the name of the server database table field starting from a virtual field name of the same table in memory
  • Method Details

    • getDBColumnName

      String getDBColumnName(String name)
      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

      String getColumnName(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 database
      Parameters:
      dbname - Name of the field of the server database table
      Returns:
      Name of the field of the table in memory