| | This file copyright (c) 2004 SO.MUS.AR. s.a.s. | Subject to the license published at | http://www.somusar.com/contact/poc_request | account "Account" | | This multi-tier entity features a database table, and two logic-tier classes, | one for accessing the database and one to provide a pure logic class. | string user_id[80] "User Id." contact_information contact_information "Contact information" --- DEFS ------------------------------------------------------------------ | No particular definitions required for this entity --- DB -------------------------------------------------------------------- | | Define the field set for the database table | of this entity, and define its primary key. | table: user_id, contact_information pkey: user_id | | Define the list of fields to be returned by a select query | query: user_id, contact_information --- LOGIC ----------------------------------------------------------------- properties: user_id, contact_information --- UI -------------------------------------------------------------------- | No usage interface for this entity, yet --- ADJUST ---------------------------------------------------------------- | Define list of predefined queries to be generated for this entity LOGIC.default_queries = "select, insert(type 1), validate, duplicate_check"