diff --git a/documentation/trunk/solutions/basic-computing/eiffelbase/eiffelbase-tutorial/eiffelbase-kernel/Persistence--storage--and-retrieval.wiki b/documentation/trunk/solutions/basic-computing/eiffelbase/eiffelbase-tutorial/eiffelbase-kernel/Persistence--storage--and-retrieval.wiki index e14903a3..4acc9d04 100644 --- a/documentation/trunk/solutions/basic-computing/eiffelbase/eiffelbase-tutorial/eiffelbase-kernel/Persistence--storage--and-retrieval.wiki +++ b/documentation/trunk/solutions/basic-computing/eiffelbase/eiffelbase-tutorial/eiffelbase-kernel/Persistence--storage--and-retrieval.wiki @@ -33,7 +33,7 @@ In both cases, you only need to be aware of the difference between the various s Regardless of the mechanism used, the feature retrieved returns a result of type [[ref:libraries/base/reference/any_chart|detachable ANY]] and is typically used through an object test. -==C storable== +==With C storable== The example below will show you how to store an object using the C storable mechanism. It uses independent_store but you could also use in-place basic_store instead: @@ -73,7 +73,7 @@ retrieve (p: PATH) If the structure in the file has been corrupted and retrieved is unable to do its job, it will trigger an exception (the code for that exception in class [[ref:libraries/base/reference/exceptions_chart|EXCEPTIONS]] (which inherits it from EXCEP_CONST and is discussed in the next section, together with the notion of exception code) is Retrieve_exception.) -===With SED storable=== +==With SED storable== The example below will show you how to store an object using the SED storable mechanism assuming the current class is a descendant of [[ref:libraries/base/reference/sed_storable_facilities_chart|SED_STORABLE_FACILITIES]]. It uses store feature from the but you could also use session_store or basic_store too.