note description: "Class which allows EiffelStore to retrieve/store% %the content of a table row from database table " author: "EiffelStore Wizard" date: "$Date$" revision: "$Revision$" class inherit DB_TABLE undefine Tables, is_valid_code redefine out end DB_SPECIFIC_TABLES_ACCESS_USE redefine out end create make feature -- Access : table_description: DB_TABLE_DESCRIPTION -- Description associated to the . do tables._description.set_ (Current) Result := tables._description end feature -- Initialization set_default do := end feature -- Basic operations set_ (a_: ) do := a_ end feature -- Output out: STRING -- Printable representation of current object. do Result := "" Result.append (": " + .out + "%N") end end -- class CODES