sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "US_STD.H" sl@0: sl@0: /** sl@0: Creates a new non-secure, non-shareable database, which will be located in a stream store. sl@0: sl@0: Note: RDbNamedDatabase should always be the preferred choice, except the following two cases: sl@0: @code sl@0: - your intention is to create, fill and then compress a database, which will be used only in a read-only mode; sl@0: - your intention is to create a database in a stream store, which stream store will be used for storing sl@0: some additional, non-database data; sl@0: @endcode sl@0: sl@0: @param aStore The stream store object, where the database will be created. sl@0: sl@0: @leave System-wide or database specific error codes. sl@0: sl@0: @return The id of the root stream of the created database. sl@0: sl@0: @see RDbNamedDatabase sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C TStreamId RDbStoreDatabase::CreateL(CStreamStore* aStore) sl@0: { sl@0: TStreamId id; sl@0: iDatabase=CDbStoreDatabase::CreateL(aStore,id); sl@0: return id; sl@0: } sl@0: sl@0: /** sl@0: Opens an existing non-secure, non-shareable database, which is located in a stream store. sl@0: sl@0: Note: RDbNamedDatabase should always be the preferred choice, except the following two cases: sl@0: @code sl@0: - your intention is to create, fill and then compress a database, which will be used only in a read-only mode; sl@0: - your intention is to create a database in a stream store, which stream store will be used for storing sl@0: some additional, non-database data; sl@0: @endcode sl@0: sl@0: @param aStore The stream store object, where the database is located. sl@0: @param aId The id of the root stream of the database. sl@0: sl@0: @leave System-wide or database specific error codes. sl@0: sl@0: @see RDbStoreDatabase::CreateL(CStreamStore* aStore) sl@0: @see RDbNamedDatabase sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: EXPORT_C void RDbStoreDatabase::OpenL(CStreamStore* aStore,TStreamId aId) sl@0: { sl@0: CDbSource* source=CDbStoreDatabase::OpenL(aStore,aId); sl@0: CleanupStack::PushL(source); sl@0: iDatabase=source->OpenL(); sl@0: CleanupStack::PopAndDestroy(source); sl@0: }