sl@0: // Copyright (c) 2004-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: // DBMS server proxy database - CDbsSecureDatabase class - "DBMS security" related sl@0: // sl@0: // sl@0: sl@0: #include "SD_STD.H" sl@0: sl@0: /** sl@0: Standard phase-one factory method for CDbsSecureDatabase objects. sl@0: Creates new secure shared database. sl@0: @param aDbs DBMS server session object. sl@0: @param aDatabase Database name. sl@0: @param aFormat Database format string. The string format is: "SECURE[]", sl@0: where UID is your database security policy uid. sl@0: @return A pointer to just created CDbsSecureDatabase instance. sl@0: @leave System-wide error codes, including KErrNoMemory. sl@0: */ sl@0: CDbsSecureDatabase* CDbsSecureDatabase::NewL(const RDbs& aDbs,const TDesC& aDatabase, sl@0: const TDesC& aFormat) sl@0: { sl@0: CDbsSecureDatabase* self = new (ELeave) CDbsSecureDatabase; sl@0: CleanupStack::PushL(self); sl@0: TIpcArgs args(&aDatabase, &aFormat, TIpcArgs::ENothing, NULL); sl@0: self->ConstructL(aDbs, args); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: /** sl@0: Standard phase-two construction method for CDbsSecureDatabase objects. sl@0: Constructs new secure shared database sl@0: @leave System-wide error codes, including KErrNoMemory. sl@0: */ sl@0: void CDbsSecureDatabase::ConstructL(const RDbs& aDbs,TIpcArgs& aArgs) sl@0: { sl@0: iObject.OpenL(aDbs, EDbsCreateDatabase, aArgs); sl@0: } sl@0: sl@0: /** sl@0: */ sl@0: CDbsSecureDatabase::~CDbsSecureDatabase() sl@0: { sl@0: }