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.
16 #ifndef __SQLRESOURCETEST_H__
17 #define __SQLRESOURCETEST_H__
19 #include "SqlUtil.h" //TSqlSrvFunction
21 //Forward declarations
25 TSqlResourceTestData class is used for sending test commands to the SQL server.
26 If the connection with the server is not established yet, the TSqlResourceTestData
27 instance will store the test command and send it later, at the moment when the connection
28 with the server is established.
32 NONSHARABLE_CLASS(TSqlResourceTestData)
35 static TSqlResourceTestData* Instance();
36 static void Release();
38 TInt Init(RSqlDbSession& aDbSession);
39 TInt Set(TSqlSrvFunction aFunction, TInt aAllocFailType, TInt aRate);
42 TSqlResourceTestData();
46 RSqlDbSession* iDbSession;
47 TSqlSrvFunction iFunction;
53 #endif //__SQLRESOURCETEST_H__