persistentstorage/dbms/udbms/UD_STD.H
changeset 0 08ec8eefde2f
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "U32STD.H"
       
    17 #include <d32dbms.h>
       
    18 #include "D32DBAS.H"
       
    19 #include "D32DRVR.H"
       
    20 
       
    21 /**
       
    22 @internalComponent
       
    23 */
       
    24 enum TDbPanic
       
    25 	{
       
    26 	EDbUnimplemented,
       
    27 	EDbInvalidColumn,
       
    28 	EDbUninitialised,
       
    29 	EDbRowLengthOverflow,
       
    30 	EDbTooManyKeys,
       
    31 	EDbInvalidViewWindowParameters,
       
    32 	EDbWrongType,
       
    33 	EDbInvalidIncrementalStep,
       
    34 	EDbNoColumnsInSeekKey
       
    35 	};
       
    36 /**
       
    37 @internalComponent
       
    38 */
       
    39 GLREF_C void Panic(TDbPanic aPanic);
       
    40 
       
    41 /**
       
    42 @internalComponent
       
    43 */
       
    44 GLREF_D const TDbDriver KBuiltinDriver;
       
    45 
       
    46 #include "UD_STD.INL"