sl@0: // Copyright (c) 2006-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: // sl@0: sl@0: #ifndef __SQLRESOURCETEST_H__ sl@0: #define __SQLRESOURCETEST_H__ sl@0: sl@0: #include "SqlUtil.h" //TSqlSrvFunction sl@0: sl@0: //Forward declarations sl@0: class RSqlDbSession; sl@0: sl@0: /** sl@0: TSqlResourceTestData class is used for sending test commands to the SQL server. sl@0: If the connection with the server is not established yet, the TSqlResourceTestData sl@0: instance will store the test command and send it later, at the moment when the connection sl@0: with the server is established. sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(TSqlResourceTestData) sl@0: { sl@0: public: sl@0: static TSqlResourceTestData* Instance(); sl@0: static void Release(); sl@0: sl@0: TInt Init(RSqlDbSession& aDbSession); sl@0: TInt Set(TSqlSrvFunction aFunction, TInt aAllocFailType, TInt aRate); sl@0: sl@0: private: sl@0: TSqlResourceTestData(); sl@0: sl@0: private: sl@0: TBool iRqPending; sl@0: RSqlDbSession* iDbSession; sl@0: TSqlSrvFunction iFunction; sl@0: TInt iAllocFailType; sl@0: TInt iRate; sl@0: sl@0: }; sl@0: sl@0: #endif //__SQLRESOURCETEST_H__