sl@0
|
1 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
|
sl@0
|
18 |
SQL server message code maker.
|
sl@0
|
19 |
|
sl@0
|
20 |
The function accepts as arguments the server function code, handle type and handle,
|
sl@0
|
21 |
and makes from them a 32-bit value, which is used as a function code in RMessage2 objects.
|
sl@0
|
22 |
|
sl@0
|
23 |
@param aFunction function code
|
sl@0
|
24 |
@param aHandleType handle type - one of TSqlSrvHandleType enum item values
|
sl@0
|
25 |
@param aHandle handle
|
sl@0
|
26 |
|
sl@0
|
27 |
@return The assembled from aFunction, aHandleType and aHandle message code which will be sent
|
sl@0
|
28 |
to the SQL server.
|
sl@0
|
29 |
|
sl@0
|
30 |
@see RMessage2
|
sl@0
|
31 |
@see TSqlSrvFunction
|
sl@0
|
32 |
|
sl@0
|
33 |
@internalComponent
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
inline TInt MakeMsgCode(TSqlSrvFunction aFunction, TSqlSrvHandleType aHandleType, TInt aHandle)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
return (aHandleType | (aHandle << KSqlSrvHandleShiftBits) | aFunction);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
41 |
////////// Case insensitive string comparisons ////
|
sl@0
|
42 |
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
Used for comparing database names, table names, column names and parameter names when the text encoding is UTF8.
|
sl@0
|
46 |
|
sl@0
|
47 |
@internalComponent
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
inline TInt CompareNoCase8(const TDesC8& aLeft, const TDesC8& aRight)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
return aLeft.CompareF(aRight);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
Used for comparing database names, table names, column names and parameter names when the text encoding is UTF16.
|
sl@0
|
56 |
|
sl@0
|
57 |
@internalComponent
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
inline TInt CompareNoCase16(const TDesC16& aLeft, const TDesC16& aRight)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return aLeft.CompareF(aRight);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
65 |
////////// Buffer alignment functions /////////////
|
sl@0
|
66 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
Returns aLen 8-byte aligned.
|
sl@0
|
70 |
|
sl@0
|
71 |
@param aLen Length value which needs alignment
|
sl@0
|
72 |
|
sl@0
|
73 |
@return 8-byte aligned aLen value
|
sl@0
|
74 |
|
sl@0
|
75 |
@internalComponent
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
inline TInt AlignedLen8(TInt aLen)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
return (aLen + 7) & (TUint32)~0x07;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
#ifdef _DEBUG
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Returns true if aLen is 8-byte aligned
|
sl@0
|
85 |
The function is implemented only in _DEBUG releases.
|
sl@0
|
86 |
|
sl@0
|
87 |
@param aLen Length value which will be checked
|
sl@0
|
88 |
|
sl@0
|
89 |
@return True if aLen is 8-byte aligned
|
sl@0
|
90 |
|
sl@0
|
91 |
@internalComponent
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
inline TBool IsAligned8(TInt aLen)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
return (aLen & 0x07) == 0;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
#endif
|