class SIMPLE inherit MATISSE_CONST MT_EXTERNAL create make feature {NONE} make is -- Prints various information do -- 1/ Choose host name and database name. Adjust wait and priority so that it suits your needs. create appl.login("venus","COMPANY",0,0) -- 2/ Choose working mode. See documentation for that. appl.set_mode(OPENED_TRANSACTION,Void) -- 3/ Connect Matisse handle to EiffelStore. appl.set_base -- 4/ Create a Matisse session. create session.make -- 5/ Connect to database with the appropriate mode (given above). session.connect -- 6/ Insert your actions here. -- ... actions --7/ Disconnect from database. session.disconnect end -- make feature -- Status Setting actions is -- Database actions do end -- actions feature {NONE} -- Implementation appl : MATISSE_APPL session : DB_CONTROL end -- class SIMPLE