sl@0
|
1 |
// Copyright (c) 1998-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 |
// Client incremental class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "UD_STD.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
// Class RDbIncremental
|
sl@0
|
21 |
|
sl@0
|
22 |
/** Releases the resources used by the incremental operations object. If the operation
|
sl@0
|
23 |
is not yet complete, then the operation is abandoned and the database is rolled
|
sl@0
|
24 |
back to its state before the operation started. */
|
sl@0
|
25 |
EXPORT_C void RDbIncremental::Close()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
iState.Close();
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
/** Performs the next step in the incremental operation, returning when the step
|
sl@0
|
31 |
is complete.
|
sl@0
|
32 |
|
sl@0
|
33 |
@param aStep Initially, contains the value returned from any of the initiating
|
sl@0
|
34 |
functions or the last call to perform an operational step. On return, contains
|
sl@0
|
35 |
a value which is less than or equal to the initial value. If it equals 0,
|
sl@0
|
36 |
then the operation has completed successfully and the incremental object should
|
sl@0
|
37 |
be closed.
|
sl@0
|
38 |
@return KErrNone if successful, or one of the DBMS database error codes. If
|
sl@0
|
39 |
this indicates an error, then the incremental object should be closed and
|
sl@0
|
40 |
the operation aborted. */
|
sl@0
|
41 |
EXPORT_C TInt RDbIncremental::Next(TInt& aStep)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
__ASSERT_ALWAYS(aStep>0,Panic(EDbInvalidIncrementalStep));
|
sl@0
|
44 |
TRAPD(r,iState->NextL(aStep));
|
sl@0
|
45 |
return r;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
/** Performs the next step in the incremental operation, returning immediately
|
sl@0
|
49 |
and signalling the request status when the step is complete.
|
sl@0
|
50 |
|
sl@0
|
51 |
This function is most effectively used when the incremental operation is packaged
|
sl@0
|
52 |
as an active object.
|
sl@0
|
53 |
|
sl@0
|
54 |
Note that the step parameter is packaged to enable this API to work for asynchronous
|
sl@0
|
55 |
calls in client/server implementations of DBMS.
|
sl@0
|
56 |
|
sl@0
|
57 |
@param aStep Initially, contains the value returned from any of the initiating
|
sl@0
|
58 |
functions or the last call to perform an operational step. On return, contains
|
sl@0
|
59 |
a value which is less than or equal to the initial value. If it equals 0,
|
sl@0
|
60 |
then the operation has completed successfully and the incremental object should
|
sl@0
|
61 |
be closed.
|
sl@0
|
62 |
@param aStatus The request status used to contain completion information for
|
sl@0
|
63 |
the function. On completion, contains the completion status or one of the
|
sl@0
|
64 |
DBMS database error codes. If this indicates an error, then the incremental
|
sl@0
|
65 |
object should be closed and the operation aborted.
|
sl@0
|
66 |
@see TPckgBuf */
|
sl@0
|
67 |
EXPORT_C void RDbIncremental::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
__ASSERT_ALWAYS(aStep.operator()()>0,Panic(EDbInvalidIncrementalStep));
|
sl@0
|
70 |
iState->Next(aStep,aStatus);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
LOCAL_C TInt Utility(RDbHandle<CDbIncremental>& aInc
|
sl@0
|
74 |
,RDbHandle<CDbDatabase>& aDb,TInt& aStep
|
sl@0
|
75 |
,CDbDatabase::TUtility aType)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
TRAPD(r,aInc=aDb->UtilityL(aType,aStep));
|
sl@0
|
78 |
return r;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
/** Initiates a database recovery operation.
|
sl@0
|
82 |
|
sl@0
|
83 |
This is the incremental version of RDbDatabase::Recover().
|
sl@0
|
84 |
Recover() will try to rebuild database indexes if they are broken.
|
sl@0
|
85 |
If the database data is corrupted, it cannot be recovered.
|
sl@0
|
86 |
|
sl@0
|
87 |
@param aDatabase The database to recover.
|
sl@0
|
88 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
89 |
operation. This value should be passed in to subsequent calls to NextL().
|
sl@0
|
90 |
|
sl@0
|
91 |
@return KErrNone if successful, or one of the DBMS database error codes. If
|
sl@0
|
92 |
recovery fails with either KErrNoMemory or KErrDiskFull, then recovery may
|
sl@0
|
93 |
be attempted again when more memory or disk space is available.
|
sl@0
|
94 |
|
sl@0
|
95 |
@see RDbDatabase::Recover()
|
sl@0
|
96 |
|
sl@0
|
97 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
98 |
access policy for the database.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
EXPORT_C TInt RDbIncremental::Recover(RDbDatabase& aDatabase,TInt& aStep)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::ERecover);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
/** Initiates the operation of calculating and updating database statistics.
|
sl@0
|
106 |
|
sl@0
|
107 |
This is the incremental form of RDbDatabase::UpdateStats()
|
sl@0
|
108 |
|
sl@0
|
109 |
@param aDatabase The database whose statistics are to be updated.
|
sl@0
|
110 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
111 |
operation. This value should be passed in to subsequent calls to Next() to
|
sl@0
|
112 |
continue the operation.
|
sl@0
|
113 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
114 |
codes.
|
sl@0
|
115 |
@see RDbDatabase::UpdateStats()
|
sl@0
|
116 |
|
sl@0
|
117 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
118 |
access policy for the database.
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
EXPORT_C TInt RDbIncremental::UpdateStats(RDbDatabase& aDatabase,TInt& aStep)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::EStats);
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
/** Initiates the operation of compacting a database. This is the incremental form
|
sl@0
|
126 |
of RDbDatabase::Compact().
|
sl@0
|
127 |
|
sl@0
|
128 |
@param aDatabase The database to compact.
|
sl@0
|
129 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
130 |
operation. This value should be passed in to subsequent calls to Next() to
|
sl@0
|
131 |
continue the operation.
|
sl@0
|
132 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
133 |
codes.
|
sl@0
|
134 |
@see RDbDatabase::Compact()
|
sl@0
|
135 |
|
sl@0
|
136 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
137 |
access policy for the database.
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
EXPORT_C TInt RDbIncremental::Compact(RDbDatabase& aDatabase,TInt& aStep)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
return Utility(iState,aDatabase.iDatabase,aStep,CDbDatabase::ECompact);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
/** Initiates a table discard operation on a database. All indexes belonging to
|
sl@0
|
145 |
the table are also discarded as part of this operation.
|
sl@0
|
146 |
|
sl@0
|
147 |
This is the incremental version of RDbDatabase::DropTable().
|
sl@0
|
148 |
|
sl@0
|
149 |
@param aDatabase The database from which to drop the table.
|
sl@0
|
150 |
@param aTable The name of the table to drop.
|
sl@0
|
151 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
152 |
operation. This value should be passed in to subsequent calls to NextL().
|
sl@0
|
153 |
@return KErrNone if successful, or one of the DBMS database error codes. The
|
sl@0
|
154 |
Store database always returns KErrNotSupported for this function.
|
sl@0
|
155 |
@see RDbDatabase::DropTable()
|
sl@0
|
156 |
|
sl@0
|
157 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
158 |
access policy for the database.
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
EXPORT_C TInt RDbIncremental::DropTable(RDbDatabase& aDatabase,const TDesC& aTable,TInt& aStep)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
TRAPD(r,iState=aDatabase.iDatabase->DropTableL(aTable,aStep));
|
sl@0
|
163 |
return r;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
/** Initiates a table alteration operation on a database. This is the incremental
|
sl@0
|
167 |
form of RDbDatabase::AlterTable().
|
sl@0
|
168 |
|
sl@0
|
169 |
@param aDatabase The database which has the table to be altered.
|
sl@0
|
170 |
@param aTable The name of the table which is to be altered.
|
sl@0
|
171 |
@param aNewDef A column set describing the new definition for the table.
|
sl@0
|
172 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
173 |
operation. This value should be passed in to subsequent calls to NextL().
|
sl@0
|
174 |
@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
|
sl@0
|
175 |
the function returns: KErrNotFound, if the table does not exist in the database.
|
sl@0
|
176 |
KErrBadName if a column name is invalid. KErrArgument if the new column set
|
sl@0
|
177 |
is empty, or there are duplicate column names, or if a column's maximum length
|
sl@0
|
178 |
is non-positive but not KDbUndefinedLength, or a non-numeric column has the
|
sl@0
|
179 |
auto-increment attribute, or an indexed column has been dropped, or a column
|
sl@0
|
180 |
has changed its type or attributes, or a not-null or auto-increment column
|
sl@0
|
181 |
has been added to a table which is not empty. KErrNotSupported if a column
|
sl@0
|
182 |
type is out of the recognised range, or an unknown attribute bit is set, or
|
sl@0
|
183 |
the maximum length for a Text8, Text16 or Binary column is more than 255.
|
sl@0
|
184 |
KErrTooBig if the resulting record size can be larger than 8200 bytes.
|
sl@0
|
185 |
@see RDbDatabase::AlterTable()
|
sl@0
|
186 |
|
sl@0
|
187 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
188 |
access policy for the database.
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
EXPORT_C TInt RDbIncremental::AlterTable(RDbDatabase& aDatabase,const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
TRAPD(r,iState=aDatabase.iDatabase->AlterTableL(aTable,aNewDef,aStep));
|
sl@0
|
193 |
return r;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
/** Initiates an index creation operation on a database. This is the incremental
|
sl@0
|
197 |
form of RDbDatabase::CreateIndex().
|
sl@0
|
198 |
|
sl@0
|
199 |
@param aDatabase The database on which to create the index.
|
sl@0
|
200 |
@param aName A name for the created index.
|
sl@0
|
201 |
@param aTable The name of the table on which to create the index.
|
sl@0
|
202 |
@param aKey The key for the new index.
|
sl@0
|
203 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
204 |
operation. This value should be passed in to subsequent calls to NextL().
|
sl@0
|
205 |
@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
|
sl@0
|
206 |
the function returns: KErrNotFound if the table does not exist in the database
|
sl@0
|
207 |
or a key column is not found in the table. KErrAlreadyExists if an index of
|
sl@0
|
208 |
the same name already exists on table or a duplicate key is present when building
|
sl@0
|
209 |
an index. Note that it is not possible to tell the difference between the
|
sl@0
|
210 |
possible causes of this error if index creation is not carried out incrementally.
|
sl@0
|
211 |
KErrBadName if an index or column name is invalid. KErrArgument if the key
|
sl@0
|
212 |
has no key columns or a fixed width column has a truncation length specified,
|
sl@0
|
213 |
or an invalid truncation length has been specified for a key column, or a
|
sl@0
|
214 |
LongText8 or LongText16 key column has no truncation length specified, or
|
sl@0
|
215 |
the key contains a Binary or LongBinary column. KErrNotSupported if a truncated
|
sl@0
|
216 |
key column is not the last one. KErrTooBig if the resulting key size is too
|
sl@0
|
217 |
big.
|
sl@0
|
218 |
@see RDbDatabase::CreateIndex()
|
sl@0
|
219 |
|
sl@0
|
220 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
221 |
access policy for the database.
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
EXPORT_C TInt RDbIncremental::CreateIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
TRAPD(r,iState=aDatabase.iDatabase->CreateIndexL(aName,aTable,aKey,aStep));
|
sl@0
|
226 |
return r;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
/** Initiates an index discard operation on the database. This is the incremental
|
sl@0
|
230 |
form of RDbDatabase::DropIndex().
|
sl@0
|
231 |
|
sl@0
|
232 |
@param aDatabase The database from which to drop the index.
|
sl@0
|
233 |
@param aName The name of the index to drop.
|
sl@0
|
234 |
@param aTable The name of the table which has the index.
|
sl@0
|
235 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
236 |
operation. This value should be passed in to subsequent calls to NextL().
|
sl@0
|
237 |
@return KErrNone if successful, or one of the DBMS database error codes. Specifically,
|
sl@0
|
238 |
the function returns KErrNotFound if the table or index does not exist
|
sl@0
|
239 |
@see RDbDatabase::DropIndex()
|
sl@0
|
240 |
|
sl@0
|
241 |
@capability Note For a secure shared database, the caller must satisfy the schema
|
sl@0
|
242 |
access policy for the database.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
EXPORT_C TInt RDbIncremental::DropIndex(RDbDatabase& aDatabase,const TDesC& aName,const TDesC& aTable,TInt& aStep)
|
sl@0
|
245 |
{
|
sl@0
|
246 |
TRAPD(r,iState=aDatabase.iDatabase->DropIndexL(aName,aTable,aStep));
|
sl@0
|
247 |
return r;
|
sl@0
|
248 |
}
|
sl@0
|
249 |
|
sl@0
|
250 |
//
|
sl@0
|
251 |
// Incremental SQL Data definition execution
|
sl@0
|
252 |
//
|
sl@0
|
253 |
LOCAL_C CDbIncremental* ExecuteDDLL(CDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
CDbIncremental* inc=aDatabase.ExecuteL(aSql,aComparison,aStep);
|
sl@0
|
256 |
if ((inc==NULL)!=(aStep==0))
|
sl@0
|
257 |
{
|
sl@0
|
258 |
CDbObject::Destroy(inc);
|
sl@0
|
259 |
__LEAVE(KErrArgument);
|
sl@0
|
260 |
}
|
sl@0
|
261 |
return inc;
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
/** Initiates the execution of a DDL (SQL schema update) statement on the database,
|
sl@0
|
265 |
specifing additional comparison operations for some SQL statements.
|
sl@0
|
266 |
|
sl@0
|
267 |
This is the incremental form of RDbDatabase::Execute().
|
sl@0
|
268 |
|
sl@0
|
269 |
Note that to begin executing a DML (SQL data update) statement incrementally,
|
sl@0
|
270 |
use the RDbUpdate class.
|
sl@0
|
271 |
|
sl@0
|
272 |
@param aDatabase The database on which the DDL (SQL schema update) statement
|
sl@0
|
273 |
is to execute.
|
sl@0
|
274 |
@param aSql The DDL SQL statement to be executed on the database.
|
sl@0
|
275 |
@param aComparison This argument is used in the execution of some SQL statements,
|
sl@0
|
276 |
and is ignored in all other SQL statements. Specifically: in CREATE INDEX
|
sl@0
|
277 |
statements, it specifies the comparison operation used for text columns in
|
sl@0
|
278 |
the index key. In UPDATE and DELETE statements, it specifies the comparison
|
sl@0
|
279 |
operation used to evaluate the WHERE clause.
|
sl@0
|
280 |
@param aStep On return, contains the initial step count for the incremental
|
sl@0
|
281 |
operation. This value should be passed in to subsequent calls to Next() to
|
sl@0
|
282 |
continue the operation.
|
sl@0
|
283 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
284 |
codes.
|
sl@0
|
285 |
@see RDbDatabase::Execute()
|
sl@0
|
286 |
@see RDbUpdate
|
sl@0
|
287 |
|
sl@0
|
288 |
@capability Note For a secure shared database, the caller must satisfy:
|
sl@0
|
289 |
- the schema access policy for the database, if the SQL statement is
|
sl@0
|
290 |
CREATE/DROP/ALTER;
|
sl@0
|
291 |
- the write access policy for the table in the SQL, if the SQL statement is
|
sl@0
|
292 |
INSERT/UPDATE/DELETE;
|
sl@0
|
293 |
*/
|
sl@0
|
294 |
EXPORT_C TInt RDbIncremental::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aStep)
|
sl@0
|
295 |
{
|
sl@0
|
296 |
TRAPD(r,iState=ExecuteDDLL(*aDatabase.iDatabase,aSql,aComparison,aStep));
|
sl@0
|
297 |
return r;
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
// Class RDbUpdate
|
sl@0
|
301 |
|
sl@0
|
302 |
//
|
sl@0
|
303 |
// Incremental SQL Data definition execution
|
sl@0
|
304 |
//
|
sl@0
|
305 |
LOCAL_C CDbIncremental* ExecuteDMLL(CDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison,TInt& aRows)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
CDbIncremental* inc=aDatabase.ExecuteL(aSql,aComparison,aRows);
|
sl@0
|
308 |
if ((inc==NULL)==(aRows==0))
|
sl@0
|
309 |
{
|
sl@0
|
310 |
CDbObject::Destroy(inc);
|
sl@0
|
311 |
__LEAVE(KErrArgument);
|
sl@0
|
312 |
}
|
sl@0
|
313 |
return inc;
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
/** Initiates the incremental execution of a DML (SQL data update) statement on
|
sl@0
|
317 |
the database. This is similar to RDbDatabase::Execute().
|
sl@0
|
318 |
|
sl@0
|
319 |
Note that to begin executing a DDL (SQL schema update) statement incrementally,
|
sl@0
|
320 |
use the RDbIncremental class.
|
sl@0
|
321 |
|
sl@0
|
322 |
@param aDatabase The database on which the DML (SQL data update) statement
|
sl@0
|
323 |
is to execute.
|
sl@0
|
324 |
@param aSql A reference to a descriptor containing the DML statement to be
|
sl@0
|
325 |
executed.
|
sl@0
|
326 |
@param aComparison This argument is only used in the execution of some SQL
|
sl@0
|
327 |
statements. By default the comparison is EDbCompareNormal. For more information
|
sl@0
|
328 |
see RDbDatabase::Execute().
|
sl@0
|
329 |
@return KErrNone, if the operation is complete or 1, if the operation requires
|
sl@0
|
330 |
further incremental execution or another of the system-wide error codes.
|
sl@0
|
331 |
@see RDbIncremental
|
sl@0
|
332 |
@see RDbDatabase::Execute()
|
sl@0
|
333 |
|
sl@0
|
334 |
@capability Note For a secure shared database, the caller must satisfy:
|
sl@0
|
335 |
- the schema access policy for the database, if the SQL statement is
|
sl@0
|
336 |
CREATE/DROP/ALTER;
|
sl@0
|
337 |
- the write access policy for the table in the SQL, if the SQL statement is
|
sl@0
|
338 |
INSERT/UPDATE/DELETE;
|
sl@0
|
339 |
*/
|
sl@0
|
340 |
EXPORT_C TInt RDbUpdate::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TDbTextComparison aComparison)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
TRAPD(r,iUpdate=ExecuteDMLL(*aDatabase.iDatabase,aSql,aComparison,iRows()));
|
sl@0
|
343 |
return r;
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
/** Releases the resources used by this incremental operation object. If the operation
|
sl@0
|
347 |
is not yet complete, then the operation is abandoned and the database is rolled
|
sl@0
|
348 |
back to its state before the operation started. */
|
sl@0
|
349 |
EXPORT_C void RDbUpdate::Close()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
iUpdate.Close();
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
/** Performs the next step in the incremental execution of the DML (SQL data update)
|
sl@0
|
355 |
statement synchronously. The function returns when the step is complete.
|
sl@0
|
356 |
|
sl@0
|
357 |
Note that if the incremental step fails, then the incremental object should
|
sl@0
|
358 |
be closed and the operation abandoned.
|
sl@0
|
359 |
|
sl@0
|
360 |
@return KErrNone if execution of the DML statement is complete or 1 if another
|
sl@0
|
361 |
step in the execution of the DML statement is needed. or another of the system-wide
|
sl@0
|
362 |
error codes is returned if the incremental step fails. */
|
sl@0
|
363 |
EXPORT_C TInt RDbUpdate::Next()
|
sl@0
|
364 |
{
|
sl@0
|
365 |
TRAPD(r,r=iUpdate->NextL(iRows()));
|
sl@0
|
366 |
return r;
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
/** Performs the next step in the incremental execution of the DML (SQL data update)
|
sl@0
|
370 |
statement asynchronously.
|
sl@0
|
371 |
|
sl@0
|
372 |
The function returns immediately and signals when the step is complete.
|
sl@0
|
373 |
|
sl@0
|
374 |
This function is most effectively used when the incremental operation is packaged
|
sl@0
|
375 |
as an active object.
|
sl@0
|
376 |
|
sl@0
|
377 |
Note that if the incremental step fails, then the incremental object should
|
sl@0
|
378 |
be closed, and the operation abandoned.
|
sl@0
|
379 |
|
sl@0
|
380 |
@param aStatus The request status used to contain completion information for
|
sl@0
|
381 |
the operation. On completion, it contains:KErrNone, if execution of the DML
|
sl@0
|
382 |
statement is complete or 1, if another step in the execution of the DML statement
|
sl@0
|
383 |
is needed. or another of the system-wide error codes, if the incremental step
|
sl@0
|
384 |
fails. */
|
sl@0
|
385 |
EXPORT_C void RDbUpdate::Next(TRequestStatus& aStatus)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
iUpdate->Next(iRows,aStatus);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
/** Returns the number of rows currently affected by the execution of the DML (SQL
|
sl@0
|
391 |
data update) statement on the database.
|
sl@0
|
392 |
|
sl@0
|
393 |
Once execution of the DML statement is complete, the value returned is the
|
sl@0
|
394 |
final total number of rows affected.
|
sl@0
|
395 |
|
sl@0
|
396 |
@return The current/final number of rows affected by the execution of the
|
sl@0
|
397 |
DML statement. */
|
sl@0
|
398 |
EXPORT_C TInt RDbUpdate::RowCount() const
|
sl@0
|
399 |
{
|
sl@0
|
400 |
return CONST_CAST(TPckgBuf<TInt>&,iRows)();
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
// Class CDbSyncIncremental
|
sl@0
|
404 |
|
sl@0
|
405 |
//
|
sl@0
|
406 |
// Implement the asynchronous step in terms of the synchronous form
|
sl@0
|
407 |
//
|
sl@0
|
408 |
EXPORT_C void CDbSyncIncremental::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
TRequestStatus* pStatus=&aStatus;
|
sl@0
|
411 |
TRAPD(r,r=NextL(aStep.operator()())); // MSVC issue!!! cannot use aStep() directly
|
sl@0
|
412 |
User::RequestComplete(pStatus,r);
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
// Class CDbAsyncIncremental
|
sl@0
|
416 |
|
sl@0
|
417 |
//
|
sl@0
|
418 |
// Implement the synchronous step in terms of the asynchronous form
|
sl@0
|
419 |
//
|
sl@0
|
420 |
EXPORT_C TBool CDbAsyncIncremental::NextL(TInt& aStep)
|
sl@0
|
421 |
{
|
sl@0
|
422 |
TRequestStatus status;
|
sl@0
|
423 |
TPckgBuf<TInt> step=aStep;
|
sl@0
|
424 |
Next(step,status);
|
sl@0
|
425 |
User::WaitForRequest(status);
|
sl@0
|
426 |
aStep=step();
|
sl@0
|
427 |
return __LEAVE_IF_ERROR(status.Int());
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|