summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/cntplsql/inc/cntsqlprovider.h
blob: 67a7782c3e242221ae5add72e1cf0bb40f91302a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/




/**
 @file
 @internalComponent
 @released
*/

#ifndef __CNTSQLPROVIDER_H__
#define __CNTSQLPROVIDER_H__

#include "cntsqlprovider.h"

#include <e32cmn.h>
#include <e32base.h>
#include <badesca.h>

/**
Enumeration defining sql statement type.

@internalComponent
@released
*/
enum TCntSqlStatement
	{
	EInsert,
	EUpdate,
	EDelete,
	ESelect	
	};
	
/**
Class used to build a sql statement class. It holds the statement type and the 
database table against which sql statement is run

@internalComponent
@released
*/
NONSHARABLE_CLASS(TCntSqlStatementType)
	{
public:
	TCntSqlStatementType(TCntSqlStatement aSqlStatement, const TDesC& aTableName);
	void SetSqlStatement(TCntSqlStatement aSqlStatement);
	TCntSqlStatement SqlStatement() const;
	const TDesC& TableName() const;
private:
	TCntSqlStatement iSqlStatement;
	const TDesC& iTableName;
	};	

/**
An abstract object representing a sql statement.

@internalComponent
@released
*/
NONSHARABLE_CLASS(CCntSqlStatement) : public CBase
	{
public:
	virtual TDesC& SqlStringL() = 0;
	void SetParamL(const TDesC& aParam, const TDesC& aValue);
	void SetConditionL(const TDesC& aCondition);
	void ClearCondition();
	TInt ParameterIndex(const TDesC& aParam) const;
	void Reset();
	void ClearParams();
	~CCntSqlStatement();

	// aTableName New table name, ownership is transferred
	void SetTableName(HBufC* aTableName);

	void ClearSqlString();

protected:
	void ConstructL(const TDesC& aTableName);
	
protected:
	HBufC* 			iTableName;
	CDesCArrayFlat*	iParams;		
	CDesCArrayFlat*	iValues;
	HBufC*			iCondition;
	HBufC*			iSqlString;
	TBool			iProcessed;
	};

/**
Concrete implementation for sql update statement.

@internalComponent
@released
*/	
NONSHARABLE_CLASS(CCntSqlUpdate) : public CCntSqlStatement
	{
public:
	static CCntSqlUpdate* NewL(const TDesC& aTableName);
	TDesC& SqlStringL();
	};

/**
Concrete implementation for sql delete statement.

@internalComponent
@released
*/		
NONSHARABLE_CLASS(CCntSqlDelete) : public CCntSqlStatement
	{
public:
	static CCntSqlDelete* NewL(const TDesC& aTableName);
	TDesC& SqlStringL();
	};


/**
Concrete implementation for sql insert statement.

@internalComponent
@released
*/	
NONSHARABLE_CLASS(CCntSqlInsert) : public CCntSqlStatement
	{
public:
	static CCntSqlInsert* NewL(const TDesC& aTableName);
	TDesC& SqlStringL();
	};
	

/**
Concrete implementation for sql select statement.

@internalComponent
@released
*/		
NONSHARABLE_CLASS(CCntSqlSelect) : public CCntSqlStatement
	{
public:
	static CCntSqlSelect* NewL(const TDesC& aTableName);
	TDesC& SqlStringL();
	};
	
/**
Factory class. Used to build CCntSqlStatement objects based on statement type provided

@internalComponent
@released
*/
NONSHARABLE_CLASS(TSqlProvider)
	{
public:
	static CCntSqlStatement* GetSqlStatementL(TCntSqlStatementType aStatementType);		
	};	

#endif //__CNTSQLPROVIDER_H__