os/persistentdata/persistentstorage/dbms/ustor/US_CLI.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/ustor/US_CLI.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "US_STD.H"
    1.20 +
    1.21 +/**
    1.22 +Creates a new non-secure, non-shareable database, which will be located in a stream store.
    1.23 +
    1.24 +Note: RDbNamedDatabase should always be the preferred choice, except the following two cases:
    1.25 +@code
    1.26 + - your intention is to create, fill and then compress a database, which will be used only in a read-only mode;
    1.27 + - your intention is to create a database in a stream store, which stream store will be used for storing
    1.28 +   some additional, non-database data;
    1.29 +@endcode
    1.30 +
    1.31 +@param aStore The stream store object, where the database will be created.
    1.32 +
    1.33 +@leave System-wide or database specific error codes.
    1.34 +
    1.35 +@return The id of the root stream of the created database.
    1.36 +
    1.37 +@see RDbNamedDatabase
    1.38 +
    1.39 +@publishedAll
    1.40 +@released
    1.41 +*/
    1.42 +EXPORT_C TStreamId RDbStoreDatabase::CreateL(CStreamStore* aStore)
    1.43 +	{
    1.44 +	TStreamId id;
    1.45 +	iDatabase=CDbStoreDatabase::CreateL(aStore,id);
    1.46 +	return id;
    1.47 +	}
    1.48 +
    1.49 +/**
    1.50 +Opens an existing non-secure, non-shareable database, which is located in a stream store.
    1.51 +
    1.52 +Note: RDbNamedDatabase should always be the preferred choice, except the following two cases:
    1.53 +@code
    1.54 + - your intention is to create, fill and then compress a database, which will be used only in a read-only mode;
    1.55 + - your intention is to create a database in a stream store, which stream store will be used for storing
    1.56 +   some additional, non-database data;
    1.57 +@endcode
    1.58 +
    1.59 +@param aStore The stream store object, where the database is located.
    1.60 +@param aId The id of the root stream of the database.
    1.61 +
    1.62 +@leave System-wide or database specific error codes.
    1.63 +
    1.64 +@see RDbStoreDatabase::CreateL(CStreamStore* aStore)
    1.65 +@see RDbNamedDatabase
    1.66 +
    1.67 +@publishedAll
    1.68 +@released
    1.69 +*/
    1.70 +EXPORT_C void RDbStoreDatabase::OpenL(CStreamStore* aStore,TStreamId aId)
    1.71 +	{
    1.72 +	CDbSource* source=CDbStoreDatabase::OpenL(aStore,aId);
    1.73 +	CleanupStack::PushL(source);
    1.74 +	iDatabase=source->OpenL();
    1.75 +	CleanupStack::PopAndDestroy(source);
    1.76 +	}