| | This file copyright (c) 2004 SO.MUS.AR. s.a.s. | Subject to the license published at | http://www.somusar.com/contact/poc_request | address "Address" | | This entity features a logic-tier class. | string street_name1[80] "Street name 1" string street_name2[40] "Street name 2" string city[80] "City" string state[80] "State" string zip_code[20] "ZIP code" string country[20] "Country" --- DEFS ------------------------------------------------------------------ | No particular definitions required for this entity --- DB -------------------------------------------------------------------- | | Define the field set for the database tables that embed | this entity, and define its primary key. | table: street_name1, street_name2, city, state, zip_code, country pkey: street_name1 | | Define list of fields that may be null | null: street_name2 | | Define the list of fields to be returned by a select query | query: street_name1, street_name2, city, state, zip_code, country --- LOGIC ----------------------------------------------------------------- | | Define the list of properties for the logic tier class | properties: street_name1, street_name2, city, state, zip_code, country --- UI -------------------------------------------------------------------- | No usage interface for this entity, yet --- ADJUST ---------------------------------------------------------------- | Do not generate any SQL "create table" for this entity. DB.make_table = "false" | For some reason, some field names are renamed in the realm of the database DB.column_map = "addr1=street_name1;addr2=street_name2;zip=zip_code" | Override default "protected" attribute for the class members LOGIC.properties.private = "true"