sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "US_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
Creates a new non-secure, non-shareable database, which will be located in a stream store.
|
sl@0
|
20 |
|
sl@0
|
21 |
Note: RDbNamedDatabase should always be the preferred choice, except the following two cases:
|
sl@0
|
22 |
@code
|
sl@0
|
23 |
- your intention is to create, fill and then compress a database, which will be used only in a read-only mode;
|
sl@0
|
24 |
- your intention is to create a database in a stream store, which stream store will be used for storing
|
sl@0
|
25 |
some additional, non-database data;
|
sl@0
|
26 |
@endcode
|
sl@0
|
27 |
|
sl@0
|
28 |
@param aStore The stream store object, where the database will be created.
|
sl@0
|
29 |
|
sl@0
|
30 |
@leave System-wide or database specific error codes.
|
sl@0
|
31 |
|
sl@0
|
32 |
@return The id of the root stream of the created database.
|
sl@0
|
33 |
|
sl@0
|
34 |
@see RDbNamedDatabase
|
sl@0
|
35 |
|
sl@0
|
36 |
@publishedAll
|
sl@0
|
37 |
@released
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
EXPORT_C TStreamId RDbStoreDatabase::CreateL(CStreamStore* aStore)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TStreamId id;
|
sl@0
|
42 |
iDatabase=CDbStoreDatabase::CreateL(aStore,id);
|
sl@0
|
43 |
return id;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Opens an existing non-secure, non-shareable database, which is located in a stream store.
|
sl@0
|
48 |
|
sl@0
|
49 |
Note: RDbNamedDatabase should always be the preferred choice, except the following two cases:
|
sl@0
|
50 |
@code
|
sl@0
|
51 |
- your intention is to create, fill and then compress a database, which will be used only in a read-only mode;
|
sl@0
|
52 |
- your intention is to create a database in a stream store, which stream store will be used for storing
|
sl@0
|
53 |
some additional, non-database data;
|
sl@0
|
54 |
@endcode
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aStore The stream store object, where the database is located.
|
sl@0
|
57 |
@param aId The id of the root stream of the database.
|
sl@0
|
58 |
|
sl@0
|
59 |
@leave System-wide or database specific error codes.
|
sl@0
|
60 |
|
sl@0
|
61 |
@see RDbStoreDatabase::CreateL(CStreamStore* aStore)
|
sl@0
|
62 |
@see RDbNamedDatabase
|
sl@0
|
63 |
|
sl@0
|
64 |
@publishedAll
|
sl@0
|
65 |
@released
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
EXPORT_C void RDbStoreDatabase::OpenL(CStreamStore* aStore,TStreamId aId)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
CDbSource* source=CDbStoreDatabase::OpenL(aStore,aId);
|
sl@0
|
70 |
CleanupStack::PushL(source);
|
sl@0
|
71 |
iDatabase=source->OpenL();
|
sl@0
|
72 |
CleanupStack::PopAndDestroy(source);
|
sl@0
|
73 |
}
|