First public contribution.
1 // Copyright (c) 2006-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.
18 inline void CSqlSrvSession::ConstructL()
24 inline CSqlSrvSession::CSqlSrvSession()
29 @return A reference to CSqlServer instance.
31 inline CSqlServer& CSqlSrvSession::Server()
33 return *static_cast<CSqlServer*>(const_cast<CServer2*>(CSession2::Server()));
37 Destroys CSqlSrvDatabase instance.
39 inline void CSqlSrvSession::DbDestroyObject()
46 Processes request for executing 8-bit SQL statement(s).
48 The method requires a valid iDatabase object.
50 Usage of the IPC call arguments:
51 Arg 0: [in] 8-bit character length of SQL statement.
52 Arg 1: [in] SQL statement.
54 @panic SqlDb 2 Client panic. iDatabase is NULL (the database object is not created yet).
56 inline TInt CSqlSrvSession::DbExecSql8L(const RMessage2& aMessage)
58 __SQLPANIC_CLIENT(iDatabase != NULL, aMessage, ESqlPanicInvalidObj);
59 iDatabase->ExecL(ReadString8ZL(aMessage, 1, aMessage.Int0()));
60 return iDatabase->LastChangesCount();
64 Processes request for executing 16-bit SQL statement(s).
66 The method requires a valid iDatabase object.
68 Usage of the IPC call arguments:
69 Arg 0: [in] 16-bit character length of SQL statement.
70 Arg 1: [in] SQL statement.
72 @panic SqlDb 2 Client panic. iDatabase is NULL (the database object is not created yet).
74 inline TInt CSqlSrvSession::DbExecSql16L(const RMessage2& aMessage)
76 __SQLPANIC_CLIENT(iDatabase != NULL, aMessage, ESqlPanicInvalidObj);
77 iDatabase->ExecL(ReadString16ZL(aMessage, 1, aMessage.Int0()));
78 return iDatabase->LastChangesCount();
82 Processes the request for setting the database isolation level.
84 The method requires a valid iDatabase object.
86 Usage of the IPC call arguments:
87 Arg 0: [in] Database isolation level.
89 @panic SqlDb 2 Client panic. iDatabase is NULL (the database object is not created yet).
91 inline void CSqlSrvSession::DbSetIsolationLevelL(const RMessage2& aMessage)
93 __SQLPANIC_CLIENT(iDatabase != NULL, aMessage, ESqlPanicInvalidObj);
94 RSqlDatabase::TIsolationLevel level = static_cast <RSqlDatabase::TIsolationLevel> (aMessage.Int0());
95 iDatabase->SetIsolationLevelL(level);