Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "General application" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2014-01-15 09:27:37 -0900 (Wed, 15 Jan 2014) $" revision: "$Revision: 94004 $" class interface DATABASE_APPL [reference G -> DATABASE create default_create end] create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) login (user_name, password: STRING_8) -- Login to database server under user_name with password. require user_name_ok: db_spec.user_name_ok (user_name) password_ok: db_spec.password_ok (password) ensure is_logged_to_base: is_logged_to_base login_and_connect (user_name, password: STRING_8) -- Login under user_name with password -- and immediately connect to Ingres database server, -- using a temporary local DB_CONTROL object. require user_name_ok: db_spec.user_name_ok (user_name) password_ok: db_spec.password_ok (password) login_with_connection_string (a_connection_string: STRING_8) -- Login with a_connection_string -- If login with connect string, user_name, password might not be available -- unless they are set manually. ensure is_logged_to_base: is_logged_to_base login_with_connection_string_and_connect (a_connection_string: STRING_8) -- Login with a_connection_string -- and immediately connect to database. feature -- Initialization login (user_name, password: STRING_8) -- Login to database server under user_name with password. require user_name_ok: db_spec.user_name_ok (user_name) password_ok: db_spec.password_ok (password) ensure is_logged_to_base: is_logged_to_base login_and_connect (user_name, password: STRING_8) -- Login under user_name with password -- and immediately connect to Ingres database server, -- using a temporary local DB_CONTROL object. require user_name_ok: db_spec.user_name_ok (user_name) password_ok: db_spec.password_ok (password) login_with_connection_string (a_connection_string: STRING_8) -- Login with a_connection_string -- If login with connect string, user_name, password might not be available -- unless they are set manually. ensure is_logged_to_base: is_logged_to_base login_with_connection_string_and_connect (a_connection_string: STRING_8) -- Login with a_connection_string -- and immediately connect to database. feature -- Access db_spec: DATABASE -- Handle to actual database -- (from HANDLE_SPEC) ensure -- from HANDLE_SPEC not_void: Result /= Void generating_type: TYPE [detachable DATABASE_APPL [G]] -- Type of current object -- (type of which it is a direct instance) -- (from ANY) ensure -- from ANY generating_type_not_void: Result /= Void generator: STRING_8 -- Name of current object's generating class -- (base class of the type of which it is a direct instance) -- (from ANY) ensure -- from ANY generator_not_void: Result /= Void generator_not_empty: not Result.is_empty Manager: DATABASE_SESSION_MANAGER -- The session manager -- (from DATABASE_SESSION_MANAGER_ACCESS) feature -- Comparison frozen deep_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void -- or attached to isomorphic object structures? -- (from ANY) ensure -- from ANY instance_free: class shallow_implies_deep: standard_equal (a, b) implies Result both_or_none_void: (a = Void) implies (Result = (b = Void)) same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b)) symmetric: Result implies deep_equal (b, a) frozen equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached -- to objects considered equal? -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.is_equal (b)) frozen is_deep_equal alias "≡≡≡" (other: DATABASE_APPL [G]): BOOLEAN -- Are Current and other attached to isomorphic object structures? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY shallow_implies_deep: standard_is_equal (other) implies Result same_type: Result implies same_type (other) symmetric: Result implies other.is_deep_equal (Current) is_equal (other: DATABASE_APPL [G]): BOOLEAN -- Is other attached to an object considered -- equal to current object? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY symmetric: Result implies other ~ Current consistent: standard_is_equal (other) implies Result frozen standard_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached to -- field-by-field identical objects of the same type? -- Always uses default object comparison criterion. -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.standard_is_equal (b)) frozen standard_is_equal alias "" (other: DATABASE_APPL [G]): BOOLEAN -- Is other attached to an object of the same type -- as current object, and field-by-field identical to it? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY same_type: Result implies same_type (other) symmetric: Result implies other.standard_is_equal (Current) feature -- Status report conforms_to (other: ANY): BOOLEAN -- Does type of current object conform to type -- of other (as per Eiffel: The Language, chapter 13)? -- (from ANY) require -- from ANY other_not_void: other /= Void is_logged_to_base: BOOLEAN -- Is current handle logged to Ingres server? ensure test_condition: Result implies (attached Manager.current_session.session_login) same_type (other: ANY): BOOLEAN -- Is type of current object identical to type of other? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY definition: Result = (conforms_to (other) and other.conforms_to (Current)) feature -- Status setting set_application (application_name: STRING_8) -- Set database application name with application_name. require argument_exist: application_name /= Void ensure is_logged_to_base: is_logged_to_base set_base -- Initialize or re-activate database server -- after a handle change. require is_logged_to_base: is_logged_to_base ensure handle.database = session_database handle.status = session_status handle.execution_type = session_execution_type handle.login = Manager.current_session.session_login set_data_source (dsn: STRING_8) -- Set database source name with dsn. require argument_exist: dsn /= Void ensure is_logged_to_base: is_logged_to_base set_group (groupid: STRING_8) -- Set database group  with groupId. require argument_exist: groupid /= Void ensure is_logged_to_base: is_logged_to_base set_hostname (host_name: STRING_8) -- Set database host name with host_name. require argument_exist: host_name /= Void ensure is_logged_to_base: is_logged_to_base set_role (roleid, rolepasswd: STRING_8) -- Set database role with roleId and password(if it has one) with rolePassWd. require argument_exist: roleid /= Void ensure is_logged_to_base: is_logged_to_base feature -- Duplication copy (other: DATABASE_APPL [G]) -- Update current object using fields of object attached -- to other, so as to yield equal objects. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_equal: Current ~ other frozen deep_copy (other: DATABASE_APPL [G]) -- Effect equivalent to that of: -- `copy` (other . `deep_twin`) -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY deep_equal: deep_equal (Current, other) frozen deep_twin: DATABASE_APPL [G] -- New object structure recursively duplicated from Current. -- (from ANY) ensure -- from ANY deep_twin_not_void: Result /= Void deep_equal: deep_equal (Current, Result) frozen standard_copy (other: DATABASE_APPL [G]) -- Copy every field of other onto corresponding field -- of current object. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_standard_equal: standard_is_equal (other) frozen standard_twin: DATABASE_APPL [G] -- New object field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) ensure -- from ANY standard_twin_not_void: Result /= Void equal: standard_equal (Result, Current) frozen twin: DATABASE_APPL [G] -- New object equal to Current -- `twin` calls `copy`; to change copying/twinning semantics, redefine `copy`. -- (from ANY) ensure -- from ANY twin_not_void: Result /= Void is_equal: Result ~ Current feature -- Basic operations frozen default: detachable DATABASE_APPL [G] -- Default value of object's type -- (from ANY) frozen default_pointer: POINTER -- Default value of type POINTER -- (Avoid the need to write p.`default` for -- some p of type POINTER.) -- (from ANY) ensure -- from ANY instance_free: class default_rescue -- Process exception for routines with no Rescue clause. -- (Default: do nothing.) -- (from ANY) frozen do_nothing -- Execute a null action. -- (from ANY) ensure -- from ANY instance_free: class feature -- Output Io: STD_FILES -- Handle to standard file setup -- (from ANY) ensure -- from ANY instance_free: class io_not_void: Result /= Void out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY out_not_void: Result /= Void print (o: detachable ANY) -- Write terse external representation of o -- on standard output. -- (from ANY) ensure -- from ANY instance_free: class frozen tagged_out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY tagged_out_not_void: Result /= Void feature -- Platform Operating_environment: OPERATING_ENVIRONMENT -- Objects available from the operating system -- (from ANY) ensure -- from ANY instance_free: class operating_environment_not_void: Result /= Void feature -- Qeury is_database_set: BOOLEAN -- Is database set? -- (from HANDLE_USE) invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note copyright: "Copyright (c) 1984-2014, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class DATABASE_APPL
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

-- Generated by Eiffel Studio --
For more details: eiffel.org