note description: "Generated Root Class by The EiffelStore Wizard" class ESTORE_ROOT create make feature -- Initialization make -- Initialize local li: ARRAYED_LIST [] do io.put_string ("%NConnecting with username '" + username + "', password '" + password + "' and data source '" + data_source + "'...") create estore_example.initialize (username, password, data_source) io.put_string ("%NProcessing Request ...") io.put_string ("%NQuery:") -- Retrieve the linked list of , result of the generated request. li := estore_example. if li.count > 0 then io.put_string ("%NThere are " + li.count.out + " found items.") -- Display only the first Result of the request io.put_string (li.first.out) else io.put_string ("%NNo items found") end end feature -- Access estore_example: ESTORE_EXAMPLE -- Example reference username: STRING = "" -- Database username. password: STRING = "" -- Database password. data_source: STRING = "" -- Database data source. end