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 |
inline CSqlDatabaseImpl::CSqlDatabaseImpl()
|
sl@0
|
19 |
{
|
sl@0
|
20 |
}
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
Attaches a secure or non-secure database.
|
sl@0
|
24 |
|
sl@0
|
25 |
Implements RSqlDatabase::Attach().
|
sl@0
|
26 |
|
sl@0
|
27 |
@param aDbFileName The name of the file that hosts the database. If this is
|
sl@0
|
28 |
a secure database, then the format of the name must be:
|
sl@0
|
29 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
30 |
If this is a private or shared non-secure database, then aDbFileName has to be the full
|
sl@0
|
31 |
database file name. "[SID]" refers to SID of the application which created the attached database.
|
sl@0
|
32 |
@param aDbName Logical database name. It must be unique (per database connection). This is the name which can
|
sl@0
|
33 |
be used for accessing tables in the attached database. The syntax is "database-name.table-name".
|
sl@0
|
34 |
|
sl@0
|
35 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
36 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
37 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
38 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
39 |
KErrInUse, the file is already open;
|
sl@0
|
40 |
KErrNotFound, database file not found;
|
sl@0
|
41 |
KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
|
sl@0
|
42 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
43 |
KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
|
sl@0
|
44 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
45 |
other system-wide error codes may also be returned.
|
sl@0
|
46 |
|
sl@0
|
47 |
@see RSqlDatabase
|
sl@0
|
48 |
@see RSqlDatabase::Attach()
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
inline TInt CSqlDatabaseImpl::Attach(const TDesC& aDbFileName, const TDesC& aDbName)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
return Session().Attach(aDbFileName, aDbName);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
Detaches previously attached database.
|
sl@0
|
57 |
|
sl@0
|
58 |
Implements RSqlDatabase::Detach().
|
sl@0
|
59 |
|
sl@0
|
60 |
@param aDbName Logical database name. The logical name of the database to be detached.
|
sl@0
|
61 |
|
sl@0
|
62 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
63 |
KErrNotFound, no attached database with aDbName name;
|
sl@0
|
64 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
65 |
other system-wide error codes may also be returned.
|
sl@0
|
66 |
|
sl@0
|
67 |
@see RSqlDatabase
|
sl@0
|
68 |
@see RSqlDatabase::Detach()
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
inline TInt CSqlDatabaseImpl::Detach(const TDesC& aDbName)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return Session().Detach(aDbName);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
Copies a database file to the specified location.
|
sl@0
|
77 |
|
sl@0
|
78 |
Implements RSqlDatabase::Copy().
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aSrcDbFileName Source database file name.
|
sl@0
|
81 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
82 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
83 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
84 |
"[SID]" refers to SID of the application which created the database.
|
sl@0
|
85 |
@param aDestDbFileName Destination database file name.
|
sl@0
|
86 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
87 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
88 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
89 |
"[SID]" refers to SID of the application which performs the copying operation.
|
sl@0
|
90 |
|
sl@0
|
91 |
The allowed copying operations are:
|
sl@0
|
92 |
- secure to secure database. Only the application created the database is allowed to copy it.
|
sl@0
|
93 |
- non-secure to non-secure database. No restrictions apply to this operation.
|
sl@0
|
94 |
|
sl@0
|
95 |
@return KErrNone, the operation completed has successfully;
|
sl@0
|
96 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
97 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
98 |
KErrInUse, the file is already open;
|
sl@0
|
99 |
KErrNotFound, database file not found;
|
sl@0
|
100 |
KErrPermissionDenied, the SID of the calling application does not match the SID of source or destination database.
|
sl@0
|
101 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
102 |
|
sl@0
|
103 |
@see RSqlDatabase
|
sl@0
|
104 |
@see RSqlDatabase::Copy()
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
inline TInt CSqlDatabaseImpl::Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
return RSqlDbSession::CopyDatabase(aSrcDbFileName, aDestDbFileName);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
Deletes the specified database file.
|
sl@0
|
113 |
|
sl@0
|
114 |
Implements RSqlDatabase::Delete().
|
sl@0
|
115 |
|
sl@0
|
116 |
@param aDbFileName The name of the database file.
|
sl@0
|
117 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
118 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
119 |
If this is a private or shared non-secure database, then aDbFileName has to be the
|
sl@0
|
120 |
full database file name. "[SID]" refers to SID of the application which created the database.
|
sl@0
|
121 |
|
sl@0
|
122 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
123 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
124 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
125 |
KErrInUse, the database file is in use;
|
sl@0
|
126 |
KErrNotFound, the database file cannot be found;
|
sl@0
|
127 |
KErrAccessDenied, access to the database file is denied (e.g. it might be a read-only file);
|
sl@0
|
128 |
KErrPermissionDenied, the SID of the calling application does not match the SID of the database;
|
sl@0
|
129 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
130 |
|
sl@0
|
131 |
@see RSqlDatabase
|
sl@0
|
132 |
@see RSqlDatabase::Delete()
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
inline TInt CSqlDatabaseImpl::Delete(const TDesC& aDbFileName)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
return RSqlDbSession::DeleteDatabase(aDbFileName);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
Sets the transaction isolation level for the database.
|
sl@0
|
141 |
|
sl@0
|
142 |
Implements RSqlDatabase::SetIsolationLevel().
|
sl@0
|
143 |
|
sl@0
|
144 |
@param aIsolationLevel The isolation level to be set.
|
sl@0
|
145 |
Allowed isolation level values are:
|
sl@0
|
146 |
- RSqlDatabase::EReadUncommitted;
|
sl@0
|
147 |
- RSqlDatabase::ESerializable;
|
sl@0
|
148 |
|
sl@0
|
149 |
@return KErrNone, if the operation has completed successfully;
|
sl@0
|
150 |
KErrNotSupported, invalid (not supported) transaction isolation level;
|
sl@0
|
151 |
|
sl@0
|
152 |
@see RSqlDatabase
|
sl@0
|
153 |
@see RSqlDatabase::SetIsolationLevel()
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
inline TInt CSqlDatabaseImpl::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
return Session().SetIsolationLevel(aIsolationLevel);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
Executes one or more 16-bit DDL/DML SQL statements.
|
sl@0
|
162 |
|
sl@0
|
163 |
Implements RSqlDatabase::Exec().
|
sl@0
|
164 |
|
sl@0
|
165 |
@param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
166 |
each statement is separated by a ';' character.
|
sl@0
|
167 |
|
sl@0
|
168 |
@return >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
169 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
170 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
171 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
172 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
173 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
174 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
175 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
176 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
177 |
other system-wide error codes may also be returned.
|
sl@0
|
178 |
|
sl@0
|
179 |
@see RSqlDatabase
|
sl@0
|
180 |
@see RSqlDatabase::Exec()
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
inline TInt CSqlDatabaseImpl::Exec(const TDesC16& aSqlStmt)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
return Session().Exec(aSqlStmt);
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
/**
|
sl@0
|
188 |
Executes one or more 8-bit DDL/DML SQL statements.
|
sl@0
|
189 |
|
sl@0
|
190 |
Implements RSqlDatabase::Exec().
|
sl@0
|
191 |
|
sl@0
|
192 |
@param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
193 |
each statement is separated by a ';' character.
|
sl@0
|
194 |
|
sl@0
|
195 |
@return >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
196 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
197 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
198 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
199 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
200 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
201 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
202 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
203 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
204 |
other system-wide error codes may also be returned.
|
sl@0
|
205 |
|
sl@0
|
206 |
@see RSqlDatabase
|
sl@0
|
207 |
@see RSqlDatabase::Exec()
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
inline TInt CSqlDatabaseImpl::Exec(const TDesC8& aSqlStmt)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
return Session().Exec(aSqlStmt);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
/**
|
sl@0
|
215 |
Executes one or more 16-bit DDL/DML SQL statements asynchronously.
|
sl@0
|
216 |
|
sl@0
|
217 |
Implements RSqlDatabase::Exec().
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
220 |
each statement is separated by a ';' character.
|
sl@0
|
221 |
@param aStatus Completion status of asynchronous request, one of the following:
|
sl@0
|
222 |
@code
|
sl@0
|
223 |
- >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
224 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
225 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
226 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
227 |
- KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
228 |
- KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
229 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
230 |
- KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
231 |
Note that aStatus may be set with database specific errors categorised as ESqlDbError,
|
sl@0
|
232 |
and other system-wide error codes.
|
sl@0
|
233 |
@endcode
|
sl@0
|
234 |
|
sl@0
|
235 |
@see RSqlDatabase
|
sl@0
|
236 |
@see RSqlDatabase::Exec()
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
inline void CSqlDatabaseImpl::Exec(const TDesC16& aSqlStmt, TRequestStatus& aStatus)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
Session().Exec(aSqlStmt, aStatus);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
/**
|
sl@0
|
244 |
Executes one or more 8-bit DDL/DML SQL statements asynchronously.
|
sl@0
|
245 |
|
sl@0
|
246 |
Implements RSqlDatabase::Exec().
|
sl@0
|
247 |
|
sl@0
|
248 |
@param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
249 |
each statement is separated by a ';' character.
|
sl@0
|
250 |
@param aStatus Completion status of asynchronous request, one of the following:
|
sl@0
|
251 |
@code
|
sl@0
|
252 |
- >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
253 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
254 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
255 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
256 |
- KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
257 |
- KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
258 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
259 |
- KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
260 |
Note that aStatus may be set with database specific errors categorised as ESqlDbError,
|
sl@0
|
261 |
and other system-wide error codes.
|
sl@0
|
262 |
@endcode
|
sl@0
|
263 |
|
sl@0
|
264 |
@see RSqlDatabase
|
sl@0
|
265 |
@see RSqlDatabase::Exec()
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
inline void CSqlDatabaseImpl::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
Session().Exec(aSqlStmt, aStatus);
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
Retrieves a reference to the textual description of the error returned by the
|
sl@0
|
274 |
most recent call.
|
sl@0
|
275 |
|
sl@0
|
276 |
Implements RSqlDatabase::LastErrorMessage().
|
sl@0
|
277 |
|
sl@0
|
278 |
@return A non-modifiable pointer descriptor representing the most recent error
|
sl@0
|
279 |
message. Note that message may be NULL, i.e. the descriptor may have
|
sl@0
|
280 |
zero length.
|
sl@0
|
281 |
|
sl@0
|
282 |
@see RSqlDatabase
|
sl@0
|
283 |
@see RSqlDatabase::LastErrorMessage()
|
sl@0
|
284 |
*/
|
sl@0
|
285 |
inline TPtrC CSqlDatabaseImpl::LastErrorMessage()
|
sl@0
|
286 |
{
|
sl@0
|
287 |
return Session().LastErrorMessage();
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
Returns the ROWID of the most recent successful INSERT into the database
|
sl@0
|
292 |
from this database connection.
|
sl@0
|
293 |
|
sl@0
|
294 |
Implements RSqlDatabase::LastInsertedRowId().
|
sl@0
|
295 |
|
sl@0
|
296 |
@return >0, the ROWID of the most recent successful INSERT into the database
|
sl@0
|
297 |
from this database connection;
|
sl@0
|
298 |
0, if no successful INSERTs have ever occurred from this database connection
|
sl@0
|
299 |
<0, if one of the system-wide error codes is returned
|
sl@0
|
300 |
|
sl@0
|
301 |
@see RSqlDatabase::LastInsertedRowId()
|
sl@0
|
302 |
*/
|
sl@0
|
303 |
inline TInt64 CSqlDatabaseImpl::LastInsertedRowId()
|
sl@0
|
304 |
{
|
sl@0
|
305 |
return Session().LastInsertedRowId();
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
/**
|
sl@0
|
309 |
@return A reference to RSqlDbSession instance.
|
sl@0
|
310 |
*/
|
sl@0
|
311 |
inline RSqlDbSession& CSqlDatabaseImpl::Session()
|
sl@0
|
312 |
{
|
sl@0
|
313 |
return iDbSession;
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
Sends a command to the server to Execute a SELECT query which is expected to return a single row consisting of
|
sl@0
|
318 |
a single column value and copies that value to the place refered by aRes parameter.
|
sl@0
|
319 |
|
sl@0
|
320 |
@param aSqlStmt 16-bit SELECT sql query
|
sl@0
|
321 |
@param aType The expected column type
|
sl@0
|
322 |
@param aRes Output parameter. Refers to the place where the result must be copied
|
sl@0
|
323 |
|
sl@0
|
324 |
@return KErrNone, if the function completes successfully,
|
sl@0
|
325 |
Positive value, The column value length, in case if the receiving buffer
|
sl@0
|
326 |
is not big enough. This return result is possible only with text or binary columns.
|
sl@0
|
327 |
|
sl@0
|
328 |
@leave The function may leave with database specific errors categorised as ESqlDbError and
|
sl@0
|
329 |
other system-wide error codes.
|
sl@0
|
330 |
*/
|
sl@0
|
331 |
inline TInt CSqlDatabaseImpl::ExecScalarFullSelectL(const TDesC16& aSqlStmt, TSqlColumnType aType, TDes8& aRes)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
TInt rc = Session().ExecScalarFullSelect(aSqlStmt, aType, aRes);
|
sl@0
|
334 |
__SQLLEAVE_IF_ERROR(rc);
|
sl@0
|
335 |
return rc;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
/**
|
sl@0
|
339 |
Sends a command to the server to Execute a SELECT query which is expected to return a single row consisting of
|
sl@0
|
340 |
a single column value and copies that value to the place refered by aRes parameter.
|
sl@0
|
341 |
|
sl@0
|
342 |
@param aSqlStmt 8-bit SELECT sql query
|
sl@0
|
343 |
@param aType The expected column type
|
sl@0
|
344 |
@param aRes Output parameter. Refers to the place where the result must be copied
|
sl@0
|
345 |
|
sl@0
|
346 |
@return KErrNone, if the function completes successfully,
|
sl@0
|
347 |
Positive value, The column value length, in case if the receiving buffer
|
sl@0
|
348 |
is not big enough. This return result is possible only with text or binary columns.
|
sl@0
|
349 |
|
sl@0
|
350 |
@leave The function may leave with database specific errors categorised as ESqlDbError and
|
sl@0
|
351 |
other system-wide error codes.
|
sl@0
|
352 |
*/
|
sl@0
|
353 |
inline TInt CSqlDatabaseImpl::ExecScalarFullSelectL(const TDesC8& aSqlStmt, TSqlColumnType aType, TDes8& aRes)
|
sl@0
|
354 |
{
|
sl@0
|
355 |
TInt rc = Session().ExecScalarFullSelect(aSqlStmt, aType, aRes);
|
sl@0
|
356 |
__SQLLEAVE_IF_ERROR(rc);
|
sl@0
|
357 |
return rc;
|
sl@0
|
358 |
}
|
sl@0
|
359 |
|
sl@0
|
360 |
/**
|
sl@0
|
361 |
@return True, if the database is in transaction, false otherwise.
|
sl@0
|
362 |
*/
|
sl@0
|
363 |
inline TBool CSqlDatabaseImpl::InTransaction()
|
sl@0
|
364 |
{
|
sl@0
|
365 |
return Session().SendReceive(ESqlSrvDbInTransaction) != 0;
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
/**
|
sl@0
|
369 |
@return >= 0, the operation has completed successfully. The number is the size of the main
|
sl@0
|
370 |
database file,
|
sl@0
|
371 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
372 |
KErrTooBig, the database is too big and the size cannot fit into 32-bit signed integer;
|
sl@0
|
373 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
374 |
other system-wide error codes may also be returned.
|
sl@0
|
375 |
*/
|
sl@0
|
376 |
inline TInt CSqlDatabaseImpl::Size()
|
sl@0
|
377 |
{
|
sl@0
|
378 |
return Session().SendReceive(ESqlSrvDbSize);
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
/**
|
sl@0
|
382 |
Returns the database file size and free space, in bytes.
|
sl@0
|
383 |
|
sl@0
|
384 |
@param aSize An output parameter. If the call was successfull the aSize object will contain information
|
sl@0
|
385 |
about the database size and database free space.
|
sl@0
|
386 |
@param aDbName The attached database name or KNullDesC for the main database
|
sl@0
|
387 |
|
sl@0
|
388 |
@return KErrNone, The operation has completed succesfully;
|
sl@0
|
389 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
390 |
other system-wide error codes may also be returned.
|
sl@0
|
391 |
|
sl@0
|
392 |
Usage of the IPC call arguments:
|
sl@0
|
393 |
Arg 0: [in/out] Points to a RSqldatabase::TSize object, where the database size and free space values
|
sl@0
|
394 |
will be copied.
|
sl@0
|
395 |
Arg 1: [out] The database name length in characters
|
sl@0
|
396 |
Arg 2: [out] The attached database name or KNullDesC for the main database
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
inline TInt CSqlDatabaseImpl::Size(RSqlDatabase::TSize& aSize, const TDesC& aDbName)
|
sl@0
|
399 |
{
|
sl@0
|
400 |
TPtr8 ptr(reinterpret_cast <TUint8*> (&aSize), sizeof(aSize));
|
sl@0
|
401 |
return Session().SendReceive(ESqlSrvDbSize2, TIpcArgs(&ptr, aDbName.Length(), &aDbName));
|
sl@0
|
402 |
}
|