sl@0: // Copyright (c) 2005-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: // User defined collations sl@0: // sl@0: // sl@0: sl@0: #ifndef __SQLSRVCOLLATION_H__ sl@0: #define __SQLSRVCOLLATION_H__ sl@0: sl@0: #include sl@0: sl@0: //Forward declarations sl@0: struct sqlite3; sl@0: sl@0: /** sl@0: This class manages the installation of the user-defined collations. sl@0: Also it gives information about the user-defined collations count and their names. sl@0: 5 different collations are supported at the moment: sl@0: "CompareC0", "CompareC1", "CompareC2", "CompareC3" respectively for collation comparison levels 0, 1, 2 and 3 sl@0: and "CompareF" for folded string comparison. sl@0: sl@0: @internalComponent sl@0: */ sl@0: class TSqlCollationUtil sl@0: { sl@0: public: sl@0: TSqlCollationUtil(sqlite3* aDbHandle); sl@0: void InstallCollationsL(); sl@0: TInt CollationCount() const; sl@0: TPtrC CollationName(TInt aIndex) const; sl@0: sl@0: private: sl@0: sqlite3* iDbHandle; sl@0: sl@0: }; sl@0: sl@0: #endif//__SQLSRVCOLLATION_H__