os/persistentdata/persistentstorage/dbms/bmake/EDbms_Template.mmh
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/bmake/EDbms_Template.mmh	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,43 @@
     1.4 +// Copyright (c) 2005-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 +// EDBMS.MMH
    1.18 +// edbms.mmh Database management - DBMS server, page and cluster cache sizes
    1.19 +// This file is an example file that may be copied, modified and 
    1.20 +// installed as \epoc32\include\edbms.mmh file to customise cache handling
    1.21 +// in the DBMS component. Also, SYMBIAN_CUSTOM_DBMS_CACHE_SIZES macro must be 
    1.22 +// defined in the related \epoc32\include\variant\Symbian_OS_v<N>.hrh file,
    1.23 +// where <N> is the OS version number, like 9.1.
    1.24 +// This example file is not expected to be directly modified.
    1.25 +// NOTE: Changing the value of these macros will affect RAM usage in 
    1.26 +// database processing system wide and should not be undertaken lightly.
    1.27 +// Index cache size in pages - size of page pool.
    1.28 +// The page cache is used to cache index information in a database.
    1.29 +// It can't be less than 8 pages.
    1.30 +// 
    1.31 +//
    1.32 +
    1.33 +/**
    1.34 + @file
    1.35 + @publishedPartner
    1.36 +*/
    1.37 +MACRO PAGE_CACHE_SIZE=16
    1.38 +
    1.39 +/**
    1.40 +Max cluster cache size - max number of clusters.
    1.41 +The cluster cache is used to cache row data for tables in a database.
    1.42 +It can't be less than 4 clusters.
    1.43 +@publishedPartner
    1.44 +*/
    1.45 +MACRO MAX_CLUSTER_CACHE_SIZE=8
    1.46 +