Update contrib.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "SqlSrvStartup.h"
19 Starts the SQL server process.
21 @return KErrNone The server started successfully
22 @return KErrAlreadyExists The server already started
23 @return Other system-wide error code
29 const TUidType serverUid(KNullUid, KNullUid, KSqlSrvUid3);
31 TInt err = server.Create(KSqlSrvImg, KNullDesC, serverUid);
37 server.Rendezvous(stat);
38 if(stat != KRequestPending)
40 server.Kill(0); // abort startup
44 server.Resume(); // logon OK - start the server
46 User::WaitForRequest(stat); // wait for start or death
47 // we can't use the 'exit reason' if the server panicked as this
48 // is the panic 'reason' and may be '0' which cannot be distinguished
50 err = (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();