sl@0
|
1 |
// Copyright (c) 2005-2010 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 |
#include "SqlAssert.h" //ESqlPanicInvalidObj, ESqlPanicObjExists
|
sl@0
|
17 |
#include "SqlDatabaseImpl.h" //CSqlDatabaseImpl
|
sl@0
|
18 |
#include "OstTraceDefinitions.h"
|
sl@0
|
19 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
20 |
#include "SqlDatabaseTraces.h"
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
#include "SqlTraceDef.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Gets the category of the return code value that is returned by
|
sl@0
|
26 |
a call to the SQL API.
|
sl@0
|
27 |
|
sl@0
|
28 |
A call to the SQL API may complete with a non-zero return code indicating that some
|
sl@0
|
29 |
unexpected behaviour has occurred. This can be categorised in a number of ways,
|
sl@0
|
30 |
for example, as a Symbian OS error, or as a database error etc etc.
|
sl@0
|
31 |
|
sl@0
|
32 |
This function takes the return code value and gets the category associated with
|
sl@0
|
33 |
that value. The categories are defined by the enum values of
|
sl@0
|
34 |
the TSqlRetCodeClass enum.
|
sl@0
|
35 |
|
sl@0
|
36 |
@param aSqlRetCode The return code value returned from a call to any (member)
|
sl@0
|
37 |
function that forms part of the SQL interface.
|
sl@0
|
38 |
|
sl@0
|
39 |
@return The category associated with the specified return code value. This is
|
sl@0
|
40 |
one of the TSqlRetCodeClass enum values.
|
sl@0
|
41 |
|
sl@0
|
42 |
@see TSqlRetCodeClass
|
sl@0
|
43 |
|
sl@0
|
44 |
@capability None
|
sl@0
|
45 |
|
sl@0
|
46 |
@publishedAll
|
sl@0
|
47 |
@released
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
EXPORT_C TSqlRetCodeClass SqlRetCodeClass(TInt aSqlRetCode)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
if(aSqlRetCode >= 0)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return ESqlInformation;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
else if(aSqlRetCode <= KSqlErrGeneral)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
return ESqlDbError;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
return ESqlOsError;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
Initialises the pointer to the implementation object to NULL.
|
sl@0
|
64 |
|
sl@0
|
65 |
@capability None
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
EXPORT_C RSqlDatabase::RSqlDatabase() :
|
sl@0
|
68 |
iImpl(NULL)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
Creates a new shared non-secure or private secure database.
|
sl@0
|
74 |
|
sl@0
|
75 |
@param aDbFileName The full path name of the file that is to host the database.
|
sl@0
|
76 |
@param aConfig the configuration string "PARAM=VALUE;....".
|
sl@0
|
77 |
The following parameters can be set using the configuration string:
|
sl@0
|
78 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
79 |
"value" must be a positive integer number;
|
sl@0
|
80 |
page_size=value - where "value" is the page size in bytes.
|
sl@0
|
81 |
The "page_size" parameter can accept the following values:
|
sl@0
|
82 |
512, 1024, 2048, 4096, 8192, 16384, 32768;
|
sl@0
|
83 |
encoding=value - where "value" is the desired database encoding.
|
sl@0
|
84 |
"value" could be either "UTF-8" or "UTF-16";
|
sl@0
|
85 |
compaction=value - where "value" is the desired compaction mode.
|
sl@0
|
86 |
"value" could be either "background", "synchronous" or "manual".
|
sl@0
|
87 |
|
sl@0
|
88 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
89 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
90 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
91 |
KErrAlreadyExists, the file already exists;
|
sl@0
|
92 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
93 |
KErrInUse, the file is already open;
|
sl@0
|
94 |
KErrArgument, the file name refers to a secure database, invalid configuration string, invalid parameter values
|
sl@0
|
95 |
in the configuration string.
|
sl@0
|
96 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
97 |
other system-wide error codes may also be returned.
|
sl@0
|
98 |
|
sl@0
|
99 |
@capability None
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName, const TDesC8* aConfig)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
104 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
105 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE_ENTRY, "Entry;0x%X;RSqlDatabase::Create;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
|
sl@0
|
106 |
TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig));
|
sl@0
|
107 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
|
sl@0
|
108 |
return err;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
Creates a new shared secure database.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aDbFileName The name of the file that is to host the database.
|
sl@0
|
115 |
The format of the name is \<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
116 |
"[SID]" refers to the application SID.
|
sl@0
|
117 |
@param aSecurityPolicy The container for the security policies.
|
sl@0
|
118 |
@param aConfig the configuration string "PARAM=VALUE;...."
|
sl@0
|
119 |
The following parameters can be set using the configuration string:
|
sl@0
|
120 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
121 |
"value" must be a positive integer number;
|
sl@0
|
122 |
page_size=value - where "value" is the page size in bytes.
|
sl@0
|
123 |
The "page_size" parameter can accept the following values:
|
sl@0
|
124 |
512, 1024, 2048, 4096, 8192, 16384, 32768;
|
sl@0
|
125 |
encoding=value - where "value" is the desired database encoding.
|
sl@0
|
126 |
"value" could be either "UTF-8" or "UTF-16";
|
sl@0
|
127 |
compaction=value - where "value" is the desired compaction mode.
|
sl@0
|
128 |
"value" could be either "background", "synchronous" or "manual".
|
sl@0
|
129 |
|
sl@0
|
130 |
|
sl@0
|
131 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
132 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
133 |
KErrArgument, the file name does not refer to a secure database;
|
sl@0
|
134 |
KErrArgument, system table name found in the security policies (aSecurityPolicy),
|
sl@0
|
135 |
invalid configuration string, invalid parameter values
|
sl@0
|
136 |
in the configuration string;
|
sl@0
|
137 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
138 |
KErrAlreadyExists, the file already exists;
|
sl@0
|
139 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
140 |
KErrInUse, the file is already open;
|
sl@0
|
141 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
142 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
143 |
other system-wide error codes may also be returned.
|
sl@0
|
144 |
|
sl@0
|
145 |
@capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
|
sl@0
|
146 |
|
sl@0
|
147 |
@see RSqlSecurityPolicy
|
sl@0
|
148 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
EXPORT_C TInt RSqlDatabase::Create(const TDesC& aDbFileName,
|
sl@0
|
151 |
const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
154 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
155 |
SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_CREATE2_ENTRY, "Entry;0x%X;RSqlDatabase::Create;aDbFileName=%S;aSecurityPolicy=0x%X;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), (TUint)&aSecurityPolicy, __SQLPRNSTR8(config, des16prnbuf)));
|
sl@0
|
156 |
TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig));
|
sl@0
|
157 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATE2_Exit, "Exit;0x%X;RSqlDatabase::Create;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
|
sl@0
|
158 |
return err;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
Opens an existing database, which can be:
|
sl@0
|
163 |
@code
|
sl@0
|
164 |
- shared non-secure;
|
sl@0
|
165 |
- shared secure;
|
sl@0
|
166 |
- private secure;
|
sl@0
|
167 |
@endcode
|
sl@0
|
168 |
|
sl@0
|
169 |
@param aDbFileName The name of the file that hosts the database. If this is
|
sl@0
|
170 |
a secure database, then the format of the name must be:
|
sl@0
|
171 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
172 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
173 |
"[SID]" refers to SID of the application which created the database.
|
sl@0
|
174 |
@param aConfig the configuration string "PARAM=VALUE;...."
|
sl@0
|
175 |
The following parameters can be set using the configuration string:
|
sl@0
|
176 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
177 |
"value" must be a positive integer number;
|
sl@0
|
178 |
|
sl@0
|
179 |
|
sl@0
|
180 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
181 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
182 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
183 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
184 |
KErrInUse, the file is already open;
|
sl@0
|
185 |
KErrNotFound, database file not found;
|
sl@0
|
186 |
KErrArgument, invalid configuration string, invalid parameter values
|
sl@0
|
187 |
in the configuration string;
|
sl@0
|
188 |
KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
|
sl@0
|
189 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
190 |
KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
|
sl@0
|
191 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
192 |
other system-wide error codes may also be returned.
|
sl@0
|
193 |
|
sl@0
|
194 |
@capability None, if aDbFileName refers to a non-secure database;
|
sl@0
|
195 |
RSqlSecurityPolicy::ESchemaPolicy or
|
sl@0
|
196 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
197 |
RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
|
sl@0
|
198 |
|
sl@0
|
199 |
@see RSqlSecurityPolicy
|
sl@0
|
200 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
EXPORT_C TInt RSqlDatabase::Open(const TDesC& aDbFileName, const TDesC8* aConfig)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
205 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
206 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPEN_ENTRY, "Entry;0x%X;RSqlDatabase::Open;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
|
sl@0
|
207 |
TRAPD(err, iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig));
|
sl@0
|
208 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPEN_EXIT, "Exit;0x%X;RSqlDatabase::Open;iImpl=0x%X;err=%d", (TUint)this, (TUint)iImpl, err));
|
sl@0
|
209 |
return err;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
/**
|
sl@0
|
213 |
Creates a new shared non-secure or private secure database.
|
sl@0
|
214 |
|
sl@0
|
215 |
@param aDbFileName The full path name of the file that is to host the database.
|
sl@0
|
216 |
@param aConfig the configuration string "PARAM=VALUE;...."
|
sl@0
|
217 |
The following parameters can be set using the configuration string:
|
sl@0
|
218 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
219 |
"value" must be a positive integer number;
|
sl@0
|
220 |
page_size=value - where "value" is the page size in bytes.
|
sl@0
|
221 |
The "page_size" parameter can accept the following values:
|
sl@0
|
222 |
512, 1024, 2048, 4096, 8192, 16384, 32768;
|
sl@0
|
223 |
encoding=value - where "value" is the desired database encoding.
|
sl@0
|
224 |
"value" could be either "UTF-8" or "UTF-16";
|
sl@0
|
225 |
compaction=value - where "value" is the desired compaction mode.
|
sl@0
|
226 |
"value" could be either "background", "synchronous" or "manual".
|
sl@0
|
227 |
|
sl@0
|
228 |
|
sl@0
|
229 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
230 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
231 |
KErrAlreadyExists, the file already exists;
|
sl@0
|
232 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
233 |
KErrInUse, the file is already open;
|
sl@0
|
234 |
KErrArgument, the file name refers to a secure database,
|
sl@0
|
235 |
invalid configuration string, invalid parameter values
|
sl@0
|
236 |
in the configuration string.
|
sl@0
|
237 |
Note that the function may leave with database specific errors categorised as ESqlDbError and
|
sl@0
|
238 |
other system-wide error codes.
|
sl@0
|
239 |
|
sl@0
|
240 |
@capability None
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName, const TDesC8* aConfig)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
245 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
246 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_CREATEL_ENTRY, "Entry;0x%X;RSqlDatabase::CreateL;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR8(config, des16prnbuf)));
|
sl@0
|
247 |
iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreate, aDbFileName, NULL, aConfig);
|
sl@0
|
248 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL_EXIT, "Entry;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
Creates a new shared secure database.
|
sl@0
|
253 |
@param aDbFileName The name of the file that is to host the database.
|
sl@0
|
254 |
The format of the name is \<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
255 |
"[SID]" refers to the application SID.
|
sl@0
|
256 |
@param aSecurityPolicy The container for the security policies.
|
sl@0
|
257 |
@param aConfig the configuration string "PARAM=VALUE;...."
|
sl@0
|
258 |
The following parameters can be set using the configuration string:
|
sl@0
|
259 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
260 |
"value" must be a positive integer number;
|
sl@0
|
261 |
page_size=value - where "value" is the page size in bytes.
|
sl@0
|
262 |
The "page_size" parameter can accept the following values:
|
sl@0
|
263 |
512, 1024, 2048, 4096, 8192, 16384, 32768;
|
sl@0
|
264 |
encoding=value - where "value" is the desired database encoding.
|
sl@0
|
265 |
"value" could be either "UTF-8" or "UTF-16";
|
sl@0
|
266 |
|
sl@0
|
267 |
compaction=value - where "value" is the desired compaction mode.
|
sl@0
|
268 |
"value" could be either "background", "synchronous" or "manual".
|
sl@0
|
269 |
|
sl@0
|
270 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
271 |
KErrArgument, the file name does not refer to a secure database;
|
sl@0
|
272 |
KErrArgument, system table name found in the security policies (aSecurityPolicy),
|
sl@0
|
273 |
invalid configuration string, invalid parameter values
|
sl@0
|
274 |
in the configuration string;
|
sl@0
|
275 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
276 |
KErrAlreadyExists, the file already exists;
|
sl@0
|
277 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
278 |
KErrInUse, the file is already open;
|
sl@0
|
279 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
280 |
Note that the function may leave with database specific errors categorised as ESqlDbError and
|
sl@0
|
281 |
other system-wide error codes.
|
sl@0
|
282 |
|
sl@0
|
283 |
@capability The calling application must satisfy the database policy of RSqlSecurityPolicy::ESchemaPolicy type;
|
sl@0
|
284 |
|
sl@0
|
285 |
@see RSqlSecurityPolicy
|
sl@0
|
286 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
EXPORT_C void RSqlDatabase::CreateL(const TDesC& aDbFileName,
|
sl@0
|
289 |
const RSqlSecurityPolicy& aSecurityPolicy, const TDesC8* aConfig)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
292 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
293 |
SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_CREATEL2_ENTRY, "Entry;0x%X;RSqlDatabase::CreateL;aDbFileName=%S;aSecurityPolicy=0x%X;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), (TUint)&aSecurityPolicy, __SQLPRNSTR8(config, des16prnbuf)));
|
sl@0
|
294 |
iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbCreateSecure, aDbFileName, &aSecurityPolicy.Impl(), aConfig);
|
sl@0
|
295 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CREATEL2_EXIT, "Exit;0x%X;RSqlDatabase::CreateL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
/**
|
sl@0
|
299 |
Opens an existing database, which can be:
|
sl@0
|
300 |
@code
|
sl@0
|
301 |
- shared non-secure;
|
sl@0
|
302 |
- shared secure;
|
sl@0
|
303 |
- private secure;
|
sl@0
|
304 |
@endcode
|
sl@0
|
305 |
|
sl@0
|
306 |
@param aDbFileName The name of the file that hosts the database. If this is
|
sl@0
|
307 |
a secure database, then the format of the name must be:
|
sl@0
|
308 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
309 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
310 |
"[SID]" refers to SID of the application which created the database.
|
sl@0
|
311 |
@param aConfig the configuration string "PARAM=VALUE;...."
|
sl@0
|
312 |
The following parameters can be set using the configuration string:
|
sl@0
|
313 |
cache_size=value - where "value" is the cache size in pages.
|
sl@0
|
314 |
"value" must be a positive integer number;
|
sl@0
|
315 |
|
sl@0
|
316 |
|
sl@0
|
317 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
318 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
319 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
320 |
KErrInUse, the file is already open;
|
sl@0
|
321 |
KErrNotFound, database file not found;
|
sl@0
|
322 |
KErrArgument, invalid configuration string, invalid parameter values
|
sl@0
|
323 |
in the configuration string;
|
sl@0
|
324 |
KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
|
sl@0
|
325 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
326 |
KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
|
sl@0
|
327 |
Note that the function may leave with database specific errors categorised as ESqlDbError and
|
sl@0
|
328 |
other system-wide error codes.
|
sl@0
|
329 |
|
sl@0
|
330 |
@capability None, if aDbFileName refers to a non-secure database;
|
sl@0
|
331 |
RSqlSecurityPolicy::ESchemaPolicy or
|
sl@0
|
332 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
333 |
RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
|
sl@0
|
334 |
|
sl@0
|
335 |
@see RSqlSecurityPolicy
|
sl@0
|
336 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
337 |
*/
|
sl@0
|
338 |
EXPORT_C void RSqlDatabase::OpenL(const TDesC& aDbFileName, const TDesC8* aConfig)
|
sl@0
|
339 |
{
|
sl@0
|
340 |
__SQLTRACE_BORDEREXPR(TPtrC8 config(aConfig ? *aConfig : KNullDesC8));
|
sl@0
|
341 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_OPENL_ENTRY, "Entry;0x%X;RSqlDatabase::OpenL;aDbFileName=%S;aConfig=%s", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(config)));
|
sl@0
|
342 |
iImpl = CSqlDatabaseImpl::NewL(ESqlSrvDbOpen, aDbFileName, NULL, aConfig);
|
sl@0
|
343 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_OPENL_EXIT, "Exit;0x%X;RSqlDatabase::OpenL;iImpl=0x%X", (TUint)this, (TUint)iImpl));
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
/**
|
sl@0
|
347 |
Closes this handle to the database.
|
sl@0
|
348 |
|
sl@0
|
349 |
The function frees memory and any allocated resources.
|
sl@0
|
350 |
|
sl@0
|
351 |
You can reuse this object, but you must reinitialise it by calling
|
sl@0
|
352 |
RSqlDatabase::Create() or RSqlDatabase::Open().
|
sl@0
|
353 |
|
sl@0
|
354 |
@see RSqlDatabase::Create()
|
sl@0
|
355 |
@see RSqlDatabase::Open()
|
sl@0
|
356 |
|
sl@0
|
357 |
@capability None
|
sl@0
|
358 |
*/
|
sl@0
|
359 |
EXPORT_C void RSqlDatabase::Close()
|
sl@0
|
360 |
{
|
sl@0
|
361 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_ENTRY, "Entry;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
|
sl@0
|
362 |
delete iImpl;
|
sl@0
|
363 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_CLOSE_EXIT, "Exit;0x%X;RSqlDatabase::Close;iImpl=0x%X", (TUint)this, (TUint)iImpl));
|
sl@0
|
364 |
iImpl = NULL;
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|
sl@0
|
367 |
/**
|
sl@0
|
368 |
Attaches an existing database to the current database connection.
|
sl@0
|
369 |
|
sl@0
|
370 |
The attached database can be read, written or modified.
|
sl@0
|
371 |
One database can be attched multiple times to the same connection, using different logical database names.
|
sl@0
|
372 |
Tables in an attached database can be referred to using "database-name.table-name" syntax.
|
sl@0
|
373 |
If an attached table doesn't have a duplicate table name in the main database, it doesn't
|
sl@0
|
374 |
require a database name prefix.
|
sl@0
|
375 |
|
sl@0
|
376 |
Transactions involving multiple attached databases are atomic.
|
sl@0
|
377 |
|
sl@0
|
378 |
@param aDbFileName The name of the file that hosts the database. If this is
|
sl@0
|
379 |
a secure database, then the format of the name must be:
|
sl@0
|
380 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
381 |
If this is a private or shared non-secure database, then aDbFileName has to be the full
|
sl@0
|
382 |
database file name. "[SID]" refers to SID of the application which created the attached database.
|
sl@0
|
383 |
@param aDbName Logical database name. It must be unique (per database connection). This is the name which can
|
sl@0
|
384 |
be used for accessing tables in the attached database. The syntax is "database-name.table-name".
|
sl@0
|
385 |
|
sl@0
|
386 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
387 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
388 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
389 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
390 |
KErrInUse, the file is already open;
|
sl@0
|
391 |
KErrNotFound, database file not found;
|
sl@0
|
392 |
KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
|
sl@0
|
393 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
394 |
KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
|
sl@0
|
395 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
396 |
other system-wide error codes may also be returned.
|
sl@0
|
397 |
|
sl@0
|
398 |
@capability None, if aDbFileName refers to a non-secure database;
|
sl@0
|
399 |
RSqlSecurityPolicy::ESchemaPolicy or
|
sl@0
|
400 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
401 |
RSqlSecurityPolicy::EWritePolicy database policy type, if aDbFileName refers to a secure database;
|
sl@0
|
402 |
|
sl@0
|
403 |
@see RSqlSecurityPolicy
|
sl@0
|
404 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
405 |
*/
|
sl@0
|
406 |
EXPORT_C TInt RSqlDatabase::Attach(const TDesC& aDbFileName, const TDesC& aDbName)
|
sl@0
|
407 |
{
|
sl@0
|
408 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_ATTACH_ENTRY, "Entry;0x%X;RSqlDatabase::Attach;aDbFileName=%S;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbFileName), __SQLPRNSTR(aDbName)));
|
sl@0
|
409 |
TInt err = Impl().Attach(aDbFileName, aDbName);
|
sl@0
|
410 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_ATTACH_EXIT, "Entry;0x%X;RSqlDatabase::Attach;err=%d", (TUint)this, err));
|
sl@0
|
411 |
return err;
|
sl@0
|
412 |
}
|
sl@0
|
413 |
|
sl@0
|
414 |
/**
|
sl@0
|
415 |
Detaches previously attached database.
|
sl@0
|
416 |
|
sl@0
|
417 |
@param aDbName Logical database name.
|
sl@0
|
418 |
The logical name of the database to be detached.
|
sl@0
|
419 |
|
sl@0
|
420 |
@return KErrNone, the operation completed has successfully;
|
sl@0
|
421 |
KErrNotFound, no attached database with aDbName name;
|
sl@0
|
422 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
423 |
other system-wide error codes may also be returned.
|
sl@0
|
424 |
|
sl@0
|
425 |
@capability None
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
EXPORT_C TInt RSqlDatabase::Detach(const TDesC& aDbName)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_ENTRY, "Entry;0x%X;RSqlDatabase::Detach;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName)));
|
sl@0
|
430 |
TInt err = Impl().Detach(aDbName);
|
sl@0
|
431 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_DETACH_EXIT, "Exit;0x%X;RSqlDatabase::Detach;err=%d", (TUint)this, err));
|
sl@0
|
432 |
return err;
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
/**
|
sl@0
|
436 |
Copies a database file to the specified location.
|
sl@0
|
437 |
|
sl@0
|
438 |
Note that this is a static function, and its use is not
|
sl@0
|
439 |
restricted to any specific RSqlDatabase instance.
|
sl@0
|
440 |
|
sl@0
|
441 |
@param aSrcDbFileName Source database file name.
|
sl@0
|
442 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
443 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
444 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
445 |
"[SID]" refers to SID of the application which created the database.
|
sl@0
|
446 |
@param aDestDbFileName Destination database file name.
|
sl@0
|
447 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
448 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
449 |
If this is a non-secure database, then aDbFileName has to be the full database file name.
|
sl@0
|
450 |
"[SID]" refers to SID of the application which performs the copying operation.
|
sl@0
|
451 |
|
sl@0
|
452 |
The allowed copying operations are:
|
sl@0
|
453 |
- secure to secure database. Only the application created the database is allowed to copy it.
|
sl@0
|
454 |
- non-secure to non-secure database. No restrictions apply to this operation.
|
sl@0
|
455 |
|
sl@0
|
456 |
@return KErrNone, the operation completed has successfully;
|
sl@0
|
457 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
458 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
459 |
KErrInUse, the file is already open;
|
sl@0
|
460 |
KErrNotFound, database file not found;
|
sl@0
|
461 |
KErrPermissionDenied, the SID of the calling application does not match the SID of source or destination database.
|
sl@0
|
462 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
463 |
|
sl@0
|
464 |
@capability None
|
sl@0
|
465 |
|
sl@0
|
466 |
Note that if the source database is a secure database, only the application, which created the database, can copy it.
|
sl@0
|
467 |
*/
|
sl@0
|
468 |
EXPORT_C TInt RSqlDatabase::Copy(const TDesC& aSrcDbFileName, const TDesC& aDestDbFileName)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COPY_ENTRY, "Entry;0;RSqlDatabase::Copy;aSrcDbFileName=%S;aDestDbFileName=%S", __SQLPRNSTR(aSrcDbFileName), __SQLPRNSTR(aDestDbFileName)));
|
sl@0
|
471 |
TInt err = CSqlDatabaseImpl::Copy(aSrcDbFileName, aDestDbFileName);
|
sl@0
|
472 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_COPY_EXIT, "Exit;0;RSqlDatabase::Copy;err=%d", err));
|
sl@0
|
473 |
return err;
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
/**
|
sl@0
|
477 |
Deletes the specified database file.
|
sl@0
|
478 |
|
sl@0
|
479 |
Note that this is a static function, and its use is not
|
sl@0
|
480 |
restricted to any specific RSqlDatabase instance.
|
sl@0
|
481 |
|
sl@0
|
482 |
@param aDbFileName The name of the database file.
|
sl@0
|
483 |
If this is a secure database, then the format of the name must be:
|
sl@0
|
484 |
\<drive\>:\<[SID]database file name excluding the path\>.
|
sl@0
|
485 |
If this is a private or shared non-secure database, then aDbFileName has to be the
|
sl@0
|
486 |
full database file name. "[SID]" refers to SID of the application which created the database.
|
sl@0
|
487 |
|
sl@0
|
488 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
489 |
KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
|
sl@0
|
490 |
KErrNotReady, the drive does not exist or is not ready;
|
sl@0
|
491 |
KErrInUse, the database file is in use;
|
sl@0
|
492 |
KErrNotFound, the database file cannot be found;
|
sl@0
|
493 |
KErrAccessDenied, access to the database file is denied (e.g. it might be a read-only file);
|
sl@0
|
494 |
KErrPermissionDenied, the SID of the calling application does not match the SID of the database;
|
sl@0
|
495 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
496 |
|
sl@0
|
497 |
@capability None
|
sl@0
|
498 |
|
sl@0
|
499 |
Note that if the database to be deleted is a secure database, only the application, which created the database, can delete it.
|
sl@0
|
500 |
*/
|
sl@0
|
501 |
EXPORT_C TInt RSqlDatabase::Delete(const TDesC& aDbFileName)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
SQL_TRACE_BORDER(OstTraceExt1(TRACE_BORDER, RSQLDATABASE_DELETE_ENTRY, "Entry;0;RSqlDatabase::Delete;aDbFileName=%S", __SQLPRNSTR(aDbFileName)));
|
sl@0
|
504 |
TInt err = CSqlDatabaseImpl::Delete(aDbFileName);
|
sl@0
|
505 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_DELETE_EXIT, "Exit;0;RSqlDatabase::Delete;err=%d", err));
|
sl@0
|
506 |
return err;
|
sl@0
|
507 |
}
|
sl@0
|
508 |
|
sl@0
|
509 |
/**
|
sl@0
|
510 |
Initializes aSecurityPolicy output parameter with a copy of the database security policies.
|
sl@0
|
511 |
The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
|
sl@0
|
512 |
|
sl@0
|
513 |
Note that there may be no security policies in force for this database.
|
sl@0
|
514 |
|
sl@0
|
515 |
@param aSecurityPolicy Input/Output parameter, which will be initialized with the database
|
sl@0
|
516 |
security policies.
|
sl@0
|
517 |
|
sl@0
|
518 |
@return KErrNone, the operation has completed successfully;
|
sl@0
|
519 |
KErrNotSupported, the current database is not a secure database;
|
sl@0
|
520 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
521 |
|
sl@0
|
522 |
@capability None
|
sl@0
|
523 |
*/
|
sl@0
|
524 |
EXPORT_C TInt RSqlDatabase::GetSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy) const
|
sl@0
|
525 |
{
|
sl@0
|
526 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicy;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy));
|
sl@0
|
527 |
TRAPD(err, CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL(); aSecurityPolicy.Set(*securityPolicy));
|
sl@0
|
528 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICY_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicy;err=%d", (TUint)this, err));
|
sl@0
|
529 |
return err;
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
/**
|
sl@0
|
533 |
Initializes aSecurityPolicy output parameter with a copy of the database security policies.
|
sl@0
|
534 |
The caller is responsible for destroying the initialized aSecurityPolicy paramemter.
|
sl@0
|
535 |
|
sl@0
|
536 |
Note that there may be no security policies in force for this database.
|
sl@0
|
537 |
|
sl@0
|
538 |
@param aSecurityPolicy Input/Output parameter, which will be initialized with the database
|
sl@0
|
539 |
security policies.
|
sl@0
|
540 |
|
sl@0
|
541 |
@leave KErrNotSupported, the current database is not a secure database;
|
sl@0
|
542 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
543 |
|
sl@0
|
544 |
@capability None
|
sl@0
|
545 |
*/
|
sl@0
|
546 |
EXPORT_C void RSqlDatabase::GetSecurityPolicyL(RSqlSecurityPolicy& aSecurityPolicy) const
|
sl@0
|
547 |
{
|
sl@0
|
548 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_ENTRY, "Entry;0x%X;RSqlDatabase::GetSecurityPolicyL;aSecurityPolicy=0x%X", (TUint)this, (TUint)&aSecurityPolicy));
|
sl@0
|
549 |
CSqlSecurityPolicy* securityPolicy = Impl().CloneSecurityPolicyL();
|
sl@0
|
550 |
aSecurityPolicy.Set(*securityPolicy);
|
sl@0
|
551 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETSECURITYPOLICYL_EXIT, "Exit;0x%X;RSqlDatabase::GetSecurityPolicyL", (TUint)this));
|
sl@0
|
552 |
}
|
sl@0
|
553 |
|
sl@0
|
554 |
/**
|
sl@0
|
555 |
Sets the transaction isolation level for the database.
|
sl@0
|
556 |
|
sl@0
|
557 |
A transaction isolation level defines the way in which a transaction
|
sl@0
|
558 |
interacts with other transactions that may be in progress concurrently.
|
sl@0
|
559 |
|
sl@0
|
560 |
Transaction isolation levels are defined by the values of the
|
sl@0
|
561 |
RSqlDatabase::TIsolationLevel enum.
|
sl@0
|
562 |
|
sl@0
|
563 |
The default isolation level is RSqlDatabase::ESerializable
|
sl@0
|
564 |
|
sl@0
|
565 |
Note that the isolation level is not a persistent property of the database.
|
sl@0
|
566 |
It is set to the default value, i.e. RSqlDatabase::ESerializable,
|
sl@0
|
567 |
whenever the database is created or opened.
|
sl@0
|
568 |
|
sl@0
|
569 |
@param aIsolationLevel The isolation level to be set.
|
sl@0
|
570 |
|
sl@0
|
571 |
@return KErrNone, if the operation has completed successfully;
|
sl@0
|
572 |
KErrNotSupported, invalid (not supported) transaction isolation level;
|
sl@0
|
573 |
|
sl@0
|
574 |
@see RSqlDatabase::TIsolationLevel
|
sl@0
|
575 |
|
sl@0
|
576 |
@capability None
|
sl@0
|
577 |
*/
|
sl@0
|
578 |
EXPORT_C TInt RSqlDatabase::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel)
|
sl@0
|
579 |
{
|
sl@0
|
580 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_ENTRY, "Entry;0x%X;RSqlDatabase::SetIsolationLevel;aIsolationLevel=%d", (TUint)this, aIsolationLevel));
|
sl@0
|
581 |
TInt err = Impl().SetIsolationLevel(aIsolationLevel);
|
sl@0
|
582 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SETISOLATIONLEVEL_EXIT, "Exit;0x%X;RSqlDatabase::SetIsolationLevel;err=%d", (TUint)this, err));
|
sl@0
|
583 |
return err;
|
sl@0
|
584 |
}
|
sl@0
|
585 |
|
sl@0
|
586 |
/**
|
sl@0
|
587 |
Executes one or more 16-bit SQL statements.
|
sl@0
|
588 |
|
sl@0
|
589 |
This method should be used for executing DDL/DML statements, but note the following point:
|
sl@0
|
590 |
- if an SQL statement contains one or more parameters, then the function will execute it,
|
sl@0
|
591 |
giving the parameters default NULL values.
|
sl@0
|
592 |
|
sl@0
|
593 |
This class (RSqlDatabase) does not offer functions for setting the parameter values.
|
sl@0
|
594 |
Use the RSqlStatement class instead.
|
sl@0
|
595 |
|
sl@0
|
596 |
If the call to this function fails because of a database-specific type error
|
sl@0
|
597 |
(i.e. the error is categorised as of type ESqlDbError), then a textual description of
|
sl@0
|
598 |
the error can be obtained calling RSqlDatabase::LastErrorMessage().
|
sl@0
|
599 |
|
sl@0
|
600 |
@param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
601 |
each statement is separated by a ';' character.
|
sl@0
|
602 |
|
sl@0
|
603 |
@return >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
604 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
605 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
606 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
607 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
608 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
609 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
610 |
KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
|
sl@0
|
611 |
statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
|
sl@0
|
612 |
In all other cases the database connection should be closed and some disk space freed before reopening
|
sl@0
|
613 |
the database;
|
sl@0
|
614 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
|
sl@0
|
615 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
616 |
other system-wide error codes may also be returned.
|
sl@0
|
617 |
|
sl@0
|
618 |
@capability None, if current RSqlDatabase object represents a handle to a non-secure database;
|
sl@0
|
619 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
|
sl@0
|
620 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
621 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
|
sl@0
|
622 |
RSqlSecurityPolicy::EWritePolicy or
|
sl@0
|
623 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
|
sl@0
|
624 |
|
sl@0
|
625 |
@see RSqlStatement
|
sl@0
|
626 |
@see TSqlRetCodeClass::ESqlDbError
|
sl@0
|
627 |
@see RSqlDatabase::LastErrorMessage()
|
sl@0
|
628 |
@see RSqlSecurityPolicy
|
sl@0
|
629 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
630 |
*/
|
sl@0
|
631 |
EXPORT_C TInt RSqlDatabase::Exec(const TDesC& aSqlStmt)
|
sl@0
|
632 |
{
|
sl@0
|
633 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_ENTRY, "Entry;0x%X;RSqlDatabase::Exec16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
|
sl@0
|
634 |
TInt err = Impl().Exec(aSqlStmt);
|
sl@0
|
635 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC16_EXIT, "Exit;0x%X;RSqlDatabase::Exec16;err=%d", (TUint)this, err));
|
sl@0
|
636 |
return err;
|
sl@0
|
637 |
}
|
sl@0
|
638 |
|
sl@0
|
639 |
/**
|
sl@0
|
640 |
Executes one or more 8-bit SQL statements.
|
sl@0
|
641 |
|
sl@0
|
642 |
This method should be used for executing DDL/DML statements, but note the following point:
|
sl@0
|
643 |
- if an SQL statement contains one or more parameters, then the function will execute it,
|
sl@0
|
644 |
giving the parameters default NULL values.
|
sl@0
|
645 |
|
sl@0
|
646 |
This class (RSqlDatabase) does not offer functions for setting the parameter values.
|
sl@0
|
647 |
Use the RSqlStatement class instead.
|
sl@0
|
648 |
|
sl@0
|
649 |
If the call to this function fails because of a database-specific type error
|
sl@0
|
650 |
(i.e. the error is categorised as ESqlDbError), then a textual description of
|
sl@0
|
651 |
the error can be obtained calling RSqlDatabase::LastErrorMessage().
|
sl@0
|
652 |
|
sl@0
|
653 |
@param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
654 |
each statement is separated by a ';' character.
|
sl@0
|
655 |
|
sl@0
|
656 |
@return >=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
657 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
658 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
659 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
660 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
661 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
662 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
663 |
KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
|
sl@0
|
664 |
statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
|
sl@0
|
665 |
In all other cases the database connection should be closed and some disk space freed before reopening
|
sl@0
|
666 |
the database;
|
sl@0
|
667 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
668 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
669 |
other system-wide error codes may also be returned.
|
sl@0
|
670 |
|
sl@0
|
671 |
@capability None, if current RSqlDatabase object represents a handle to a non-secure database;
|
sl@0
|
672 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
|
sl@0
|
673 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
674 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
|
sl@0
|
675 |
RSqlSecurityPolicy::EWritePolicy or
|
sl@0
|
676 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
|
sl@0
|
677 |
|
sl@0
|
678 |
@see RSqlStatement
|
sl@0
|
679 |
@see TSqlRetCodeClass::ESqlDbError
|
sl@0
|
680 |
@see RSqlDatabase::LastErrorMessage()
|
sl@0
|
681 |
@see RSqlSecurityPolicy
|
sl@0
|
682 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
683 |
*/
|
sl@0
|
684 |
EXPORT_C TInt RSqlDatabase::Exec(const TDesC8& aSqlStmt)
|
sl@0
|
685 |
{
|
sl@0
|
686 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
687 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_ENTRY, "Entry;0x%X;RSqlDatabase::Exec8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
|
sl@0
|
688 |
TInt err = Impl().Exec(aSqlStmt);
|
sl@0
|
689 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXEC8_EXIT, "Exit;0x%X;RSqlDatabase::Exec8;err=%d", (TUint)this, err));
|
sl@0
|
690 |
return err;
|
sl@0
|
691 |
}
|
sl@0
|
692 |
|
sl@0
|
693 |
/**
|
sl@0
|
694 |
Executes one or more 16-bit SQL statements asynchronously to allow client to avoid being blocked
|
sl@0
|
695 |
by server activity.
|
sl@0
|
696 |
|
sl@0
|
697 |
No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
|
sl@0
|
698 |
until the asynchronous operation completes.
|
sl@0
|
699 |
|
sl@0
|
700 |
This method should be used for executing DDL/DML statements, but note the following point:
|
sl@0
|
701 |
- if an SQL statement contains one or more parameters, then the function will execute it,
|
sl@0
|
702 |
giving the parameters default NULL values.
|
sl@0
|
703 |
|
sl@0
|
704 |
This class (RSqlDatabase) does not offer functions for setting the parameter values.
|
sl@0
|
705 |
Use the RSqlStatement class instead.
|
sl@0
|
706 |
|
sl@0
|
707 |
If the call to this function fails because of a database-specific type error
|
sl@0
|
708 |
(i.e. the error is categorised as ESqlDbError), then a textual description of
|
sl@0
|
709 |
the error can be obtained calling RSqlDatabase::LastErrorMessage().
|
sl@0
|
710 |
|
sl@0
|
711 |
@param aSqlStmt A string of 16-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
712 |
each statement is separated by a ';' character.
|
sl@0
|
713 |
@param aStatus Completion status of asynchronous request, one of the following:
|
sl@0
|
714 |
>=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
715 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
716 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
717 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
718 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
719 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
720 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
721 |
KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
|
sl@0
|
722 |
statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
|
sl@0
|
723 |
In all other cases the database connection should be closed and some disk space freed before reopening
|
sl@0
|
724 |
the database;
|
sl@0
|
725 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
726 |
Note that aStatus may be set with database specific errors categorised as ESqlDbError,
|
sl@0
|
727 |
and other system-wide error codes.
|
sl@0
|
728 |
|
sl@0
|
729 |
|
sl@0
|
730 |
@capability None, if current RSqlDatabase object represents a handle to a non-secure database;
|
sl@0
|
731 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
|
sl@0
|
732 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
733 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
|
sl@0
|
734 |
RSqlSecurityPolicy::EWritePolicy or
|
sl@0
|
735 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
|
sl@0
|
736 |
|
sl@0
|
737 |
@see RSqlStatement
|
sl@0
|
738 |
@see TSqlRetCodeClass::ESqlDbError
|
sl@0
|
739 |
@see RSqlDatabase::LastErrorMessage()
|
sl@0
|
740 |
@see RSqlSecurityPolicy
|
sl@0
|
741 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
742 |
*/
|
sl@0
|
743 |
EXPORT_C void RSqlDatabase::Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus)
|
sl@0
|
744 |
{
|
sl@0
|
745 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
|
sl@0
|
746 |
Impl().Exec(aSqlStmt, aStatus);
|
sl@0
|
747 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC16_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync16;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
|
sl@0
|
748 |
}
|
sl@0
|
749 |
|
sl@0
|
750 |
/**
|
sl@0
|
751 |
Executes one or more 8-bit SQL statements asynchronously to allow client to avoid being blocked
|
sl@0
|
752 |
by server activity.
|
sl@0
|
753 |
|
sl@0
|
754 |
No other operations can be performed on current RSqlDatabase object and RSqlStatement objects using it
|
sl@0
|
755 |
until the asynchronous operation completes.
|
sl@0
|
756 |
|
sl@0
|
757 |
This method should be used for executing DDL/DML statements, but note the following point:
|
sl@0
|
758 |
- if an SQL statement contains one or more parameters, then the function will execute it,
|
sl@0
|
759 |
giving the parameters default NULL values.
|
sl@0
|
760 |
|
sl@0
|
761 |
This class (RSqlDatabase) does not offer functions for setting the parameter values.
|
sl@0
|
762 |
Use the RSqlStatement class instead.
|
sl@0
|
763 |
|
sl@0
|
764 |
If the call to this function fails because of a database-specific type error
|
sl@0
|
765 |
(i.e. the error is categorised as ESqlDbError), then a textual description of
|
sl@0
|
766 |
the error can be obtained calling RSqlDatabase::LastErrorMessage().
|
sl@0
|
767 |
|
sl@0
|
768 |
@param aSqlStmt A string of 8-bit wide characters containing one or more DDL/DML SQL statements;
|
sl@0
|
769 |
each statement is separated by a ';' character.
|
sl@0
|
770 |
@param aStatus Completion status of asynchronous request, one of the following:
|
sl@0
|
771 |
>=0, The operation has completed successfully. The number of database rows that were
|
sl@0
|
772 |
changed/inserted/deleted by the most recently completed DDL/DML sql statement.
|
sl@0
|
773 |
Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
|
sl@0
|
774 |
if the operation has completed successfully (disregarding the number of the deleted rows);
|
sl@0
|
775 |
KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
776 |
KSqlErrGeneral, a syntax error has occurred - text describing the problem
|
sl@0
|
777 |
can be obtained by calling RSqlDatabase::LastErrorMessage();
|
sl@0
|
778 |
KErrDiskFull, There is no available disk space to complete the operation. If the executed statement is a DELETE
|
sl@0
|
779 |
statement, try to use the reserved disk space (if there is a reserved disk space) to complete the operation.
|
sl@0
|
780 |
In all other cases the database connection should be closed and some disk space freed before reopening
|
sl@0
|
781 |
the database;
|
sl@0
|
782 |
KErrPermissionDenied, the caller does not satisfy the relevant database security policies;
|
sl@0
|
783 |
Note that aStatus may be set with database specific errors categorised as ESqlDbError,
|
sl@0
|
784 |
and other system-wide error codes.
|
sl@0
|
785 |
|
sl@0
|
786 |
|
sl@0
|
787 |
@capability None, if current RSqlDatabase object represents a handle to a non-secure database;
|
sl@0
|
788 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement modifies a secure database schema;
|
sl@0
|
789 |
RSqlSecurityPolicy::EReadPolicy or
|
sl@0
|
790 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement reads from a secure database;
|
sl@0
|
791 |
RSqlSecurityPolicy::EWritePolicy or
|
sl@0
|
792 |
RSqlSecurityPolicy::ESchemaPolicy database policy type, if the SQL statement writes to a secure database;
|
sl@0
|
793 |
|
sl@0
|
794 |
@see RSqlStatement
|
sl@0
|
795 |
@see TSqlRetCodeClass::ESqlDbError
|
sl@0
|
796 |
@see RSqlDatabase::LastErrorMessage()
|
sl@0
|
797 |
@see RSqlSecurityPolicy
|
sl@0
|
798 |
@see RSqlSecurityPolicy::TPolicyType
|
sl@0
|
799 |
*/
|
sl@0
|
800 |
EXPORT_C void RSqlDatabase::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus)
|
sl@0
|
801 |
{
|
sl@0
|
802 |
__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
|
sl@0
|
803 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_ENTRY, "Entry;0x%X;RSqlDatabase::ExecAsync8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
|
sl@0
|
804 |
Impl().Exec(aSqlStmt, aStatus);
|
sl@0
|
805 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_EXECASYNC8_EXIT, "Exit;0x%X;RSqlDatabase::ExecAsync8;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
|
sl@0
|
806 |
}
|
sl@0
|
807 |
|
sl@0
|
808 |
/**
|
sl@0
|
809 |
Retrieves a reference to the textual description of the error returned by the
|
sl@0
|
810 |
most recent call to any of the functions:
|
sl@0
|
811 |
- RSqlDatabase::Exec()
|
sl@0
|
812 |
- RSqlStatement::Exec()
|
sl@0
|
813 |
- RSqlStatement::Next()
|
sl@0
|
814 |
- RSqlStatement::Reset()
|
sl@0
|
815 |
|
sl@0
|
816 |
Note that the function can only return a reference to text for
|
sl@0
|
817 |
database-specific type errors, i.e. those errors that are categorised as of
|
sl@0
|
818 |
type ESqlDbError.
|
sl@0
|
819 |
|
sl@0
|
820 |
@return A non-modifiable pointer descriptor representing the most recent error
|
sl@0
|
821 |
message. Note that message may be NULL, i.e. the descriptor may have
|
sl@0
|
822 |
zero length.
|
sl@0
|
823 |
|
sl@0
|
824 |
@see TSqlRetCodeClass::ESqlDbError
|
sl@0
|
825 |
@see RSqlDatabase::Exec()
|
sl@0
|
826 |
@see RSqlStatement::Exec()
|
sl@0
|
827 |
@see RSqlStatement::Next()
|
sl@0
|
828 |
@see RSqlStatement::Reset()
|
sl@0
|
829 |
|
sl@0
|
830 |
@capability None
|
sl@0
|
831 |
*/
|
sl@0
|
832 |
EXPORT_C TPtrC RSqlDatabase::LastErrorMessage() const
|
sl@0
|
833 |
{
|
sl@0
|
834 |
TPtrC msg(Impl().LastErrorMessage());
|
sl@0
|
835 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTERRORMESSAGE, "0x%X;RSqlDatabase::LastErrorMessage;msg=%S", (TUint)this, __SQLPRNSTR(msg)));
|
sl@0
|
836 |
return msg;
|
sl@0
|
837 |
}
|
sl@0
|
838 |
|
sl@0
|
839 |
/**
|
sl@0
|
840 |
Returns the ROWID of the most recent successful INSERT into the database
|
sl@0
|
841 |
from this database connection.
|
sl@0
|
842 |
|
sl@0
|
843 |
@return >0, the ROWID of the most recent successful INSERT into the database
|
sl@0
|
844 |
from this database connection;
|
sl@0
|
845 |
0, if no successful INSERTs have ever occurred from this database connection
|
sl@0
|
846 |
<0, if one of the system-wide error codes is returned
|
sl@0
|
847 |
|
sl@0
|
848 |
@capability None
|
sl@0
|
849 |
*/
|
sl@0
|
850 |
EXPORT_C TInt64 RSqlDatabase::LastInsertedRowId() const
|
sl@0
|
851 |
{
|
sl@0
|
852 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_ENTRY, "Entry;0x%X;RSqlDatabase::LastInsertedRowId", (TUint)this));
|
sl@0
|
853 |
TInt64 rc = Impl().LastInsertedRowId();
|
sl@0
|
854 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_LASTINSERTEDROWID_EXIT, "Exit;0x%X;RSqlDatabase::LastInsertedRowId;RowId=%lld", (TUint)this, rc));
|
sl@0
|
855 |
return rc;
|
sl@0
|
856 |
}
|
sl@0
|
857 |
|
sl@0
|
858 |
/**
|
sl@0
|
859 |
Checks the database transaction state.
|
sl@0
|
860 |
|
sl@0
|
861 |
@return True, if the database is in transaction, false otherwise.
|
sl@0
|
862 |
|
sl@0
|
863 |
@capability None
|
sl@0
|
864 |
*/
|
sl@0
|
865 |
EXPORT_C TBool RSqlDatabase::InTransaction() const
|
sl@0
|
866 |
{
|
sl@0
|
867 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_ENTRY, "Entry;0x%X;RSqlDatabase::InTransaction", (TUint)this));
|
sl@0
|
868 |
TBool res = Impl().InTransaction();
|
sl@0
|
869 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_INTRABSACTION_EXIT, "Exit;0x%X;RSqlDatabase::InTransaction;res=%d", (TUint)this, res));
|
sl@0
|
870 |
return res;
|
sl@0
|
871 |
}
|
sl@0
|
872 |
|
sl@0
|
873 |
/**
|
sl@0
|
874 |
Returns the database file size, in bytes.
|
sl@0
|
875 |
|
sl@0
|
876 |
@return >= 0, the operation has completed successfully. The number is the size of the main
|
sl@0
|
877 |
database file;
|
sl@0
|
878 |
KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
879 |
KErrTooBig, the database is too big and the size cannot fit into 32-bit signed integer;
|
sl@0
|
880 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
881 |
other system-wide error codes may also be returned.
|
sl@0
|
882 |
|
sl@0
|
883 |
@capability None
|
sl@0
|
884 |
*/
|
sl@0
|
885 |
EXPORT_C TInt RSqlDatabase::Size() const
|
sl@0
|
886 |
{
|
sl@0
|
887 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_SIZE_ENTRY, "Entry;0x%X;RSqlDatabase::Size", (TUint)this));
|
sl@0
|
888 |
TInt rc = Impl().Size();
|
sl@0
|
889 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE_EXIT, "Exit;0x%X;RSqlDatabase::Size;rc=%d", (TUint)this, rc));
|
sl@0
|
890 |
return rc;
|
sl@0
|
891 |
}
|
sl@0
|
892 |
|
sl@0
|
893 |
/**
|
sl@0
|
894 |
Returns the database file size and free space, in bytes.
|
sl@0
|
895 |
|
sl@0
|
896 |
@param aSize An output parameter. If the call was successfull the aSize object will contain information
|
sl@0
|
897 |
about the database size and database free space.
|
sl@0
|
898 |
@param aDbName The attached database name or KNullDesC for the main database
|
sl@0
|
899 |
|
sl@0
|
900 |
@return KErrNone, The operation has completed succesfully;
|
sl@0
|
901 |
KErrBadName, Invalid (too long) attached database name;
|
sl@0
|
902 |
KSqlErrGeneral, There is no an attached database with aDbName name;
|
sl@0
|
903 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
904 |
other system-wide error codes may also be returned.
|
sl@0
|
905 |
|
sl@0
|
906 |
@capability None
|
sl@0
|
907 |
*/
|
sl@0
|
908 |
EXPORT_C TInt RSqlDatabase::Size(RSqlDatabase::TSize& aSize, const TDesC& aDbName) const
|
sl@0
|
909 |
{
|
sl@0
|
910 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_SIZE2_ENTRY, "Entry;0x%X;RSqlDatabase::Size-2;aDbName=%S", (TUint)this, __SQLPRNSTR(aDbName)));
|
sl@0
|
911 |
TInt err = Impl().Size(aSize, aDbName);
|
sl@0
|
912 |
SQL_TRACE_BORDER(OstTraceExt4(TRACE_BORDER, RSQLDATABASE_SIZE2_EXIT, "Exit;0x%X;RSqlDatabase::Size-2;err=%d;aSize.iSize=%lld;aSize.iFree=%lld", (TUint)this, err, aSize.iSize, aSize.iFree));
|
sl@0
|
913 |
return err;
|
sl@0
|
914 |
}
|
sl@0
|
915 |
|
sl@0
|
916 |
/**
|
sl@0
|
917 |
Compacts the database.
|
sl@0
|
918 |
This function should be used for databases that have been configured for a manual compaction during
|
sl@0
|
919 |
the database creation.
|
sl@0
|
920 |
The function has no effect if the database has been configured for an auto compaction.
|
sl@0
|
921 |
The function has no effect if the aSize argument value is zero.
|
sl@0
|
922 |
The function has no effect also if there aren't any free pages in the database file.
|
sl@0
|
923 |
If the database has been configured for a background compaction, then the function works as if the database
|
sl@0
|
924 |
has been configured for a manual compaction.
|
sl@0
|
925 |
|
sl@0
|
926 |
@param aSize Can be one of:
|
sl@0
|
927 |
RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages
|
sl@0
|
928 |
(if any exists) will be removed;
|
sl@0
|
929 |
Positive 32-bit signed integer value - the server will attempt to compact the database removing
|
sl@0
|
930 |
at most aSize bytes from the database file, rounded up to the nearest page count,
|
sl@0
|
931 |
e.g. request for removing 1 byte will remove one free page from the database;
|
sl@0
|
932 |
|
sl@0
|
933 |
@param aDbName The attached database name or KNullDesC for the main database
|
sl@0
|
934 |
|
sl@0
|
935 |
@return Zero or positive integer - the operation has completed succesfully, the return value is the
|
sl@0
|
936 |
size of the removed free space in bytes,
|
sl@0
|
937 |
KErrArgument, Invalid aSize value;
|
sl@0
|
938 |
KErrBadName, Invalid (too long) attached database name;
|
sl@0
|
939 |
KSqlErrReadOnly, Read-only database;
|
sl@0
|
940 |
KSqlErrGeneral, There is no an attached database with aDbName name;
|
sl@0
|
941 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
942 |
other system-wide error codes may also be returned.
|
sl@0
|
943 |
|
sl@0
|
944 |
@capability None
|
sl@0
|
945 |
*/
|
sl@0
|
946 |
EXPORT_C TInt RSqlDatabase::Compact(TInt64 aSize, const TDesC& aDbName)
|
sl@0
|
947 |
{
|
sl@0
|
948 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACT_ENTRY, "Entry;0x%X;RSqlDatabase::Compact;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName)));
|
sl@0
|
949 |
TInt rc = Impl().Compact(aSize, aDbName);
|
sl@0
|
950 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACT_EXIT, "Exit;0x%X;RSqlDatabase::Compact;rc=%d", (TUint)this, rc));
|
sl@0
|
951 |
return rc;
|
sl@0
|
952 |
}
|
sl@0
|
953 |
|
sl@0
|
954 |
/**
|
sl@0
|
955 |
Compacts the database asynchronously.
|
sl@0
|
956 |
This function should be used for databases that have been configured for a manual compaction during
|
sl@0
|
957 |
the database creation.
|
sl@0
|
958 |
The function has no effect if the database has been configured for an auto compaction.
|
sl@0
|
959 |
The function has no effect if the aSize argument value is zero.
|
sl@0
|
960 |
The function has no effect also if there aren't any free pages in the database file.
|
sl@0
|
961 |
If the database has been configured for a background compaction, then the function works as if the database
|
sl@0
|
962 |
has been configured for a manual compaction.
|
sl@0
|
963 |
|
sl@0
|
964 |
@param aStatus Completion status of asynchronous request, one of the following:
|
sl@0
|
965 |
Zero or positive integer - the operation has completed succesfully, the return value is the
|
sl@0
|
966 |
size of the removed free space in bytes,
|
sl@0
|
967 |
KErrArgument, Invalid aSize value;
|
sl@0
|
968 |
KErrBadName, Invalid (too long) attached database name;
|
sl@0
|
969 |
KSqlErrReadOnly, Read-only database;
|
sl@0
|
970 |
KSqlErrGeneral, There is no an attached database with aDbName name;
|
sl@0
|
971 |
Note that database specific errors categorised as ESqlDbError, and
|
sl@0
|
972 |
other system-wide error codes may also be returned.
|
sl@0
|
973 |
|
sl@0
|
974 |
|
sl@0
|
975 |
@param aSize Can be one of:
|
sl@0
|
976 |
RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages
|
sl@0
|
977 |
(if any exists) will be removed;
|
sl@0
|
978 |
Positive 32-bit signed integer value - the server will attempt to compact the database removing
|
sl@0
|
979 |
at most aSize bytes from the database file, rounded up to the nearest page count,
|
sl@0
|
980 |
e.g. request for removing 1 byte will remove one free page from the database;
|
sl@0
|
981 |
|
sl@0
|
982 |
@param aDbName The attached database name or KNullDesC for the main database
|
sl@0
|
983 |
|
sl@0
|
984 |
@capability None
|
sl@0
|
985 |
*/
|
sl@0
|
986 |
EXPORT_C void RSqlDatabase::Compact(TInt64 aSize, TRequestStatus& aStatus, const TDesC& aDbName)
|
sl@0
|
987 |
{
|
sl@0
|
988 |
SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_ENTRY, "Entry;0x%X;RSqlDatabase::CompactAsync;aSize=%lld;aDbName=%S", (TUint)this, aSize, __SQLPRNSTR(aDbName)));
|
sl@0
|
989 |
Impl().Compact(aSize, aDbName, aStatus);
|
sl@0
|
990 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_COMPACTASYNC_EXIT, "Exit;0x%X;RSqlDatabase::CompactAsync;aStatus.Int()=%d", (TUint)this, aStatus.Int()));
|
sl@0
|
991 |
}
|
sl@0
|
992 |
|
sl@0
|
993 |
/**
|
sl@0
|
994 |
Reserves a predefined amount of disk space on the drive where the database file is.
|
sl@0
|
995 |
|
sl@0
|
996 |
At the moment the max possible amount, allowed by the file server, is reserved on the database file drive.
|
sl@0
|
997 |
Use this call to ensure that if your "delete records" transaction fails because of "out of
|
sl@0
|
998 |
disk space" circumstances, you can get an access to the already reserved disk space and
|
sl@0
|
999 |
complete your transaction successfully the second time.
|
sl@0
|
1000 |
|
sl@0
|
1001 |
There is no strong, 100% guarantee, that the reserved disk space will always help the client
|
sl@0
|
1002 |
in "low memory" situations.
|
sl@0
|
1003 |
|
sl@0
|
1004 |
@param aSpace This parameter is not used at the moment.
|
sl@0
|
1005 |
|
sl@0
|
1006 |
@return KErrNone, The operation has completed succesfully;
|
sl@0
|
1007 |
KErrNoMemory, Out of memory condition has occured;
|
sl@0
|
1008 |
KErrAlreadyExists, The space has already been reserved;
|
sl@0
|
1009 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
1010 |
|
sl@0
|
1011 |
@see RSqlDatabase::FreeReservedSpace()
|
sl@0
|
1012 |
@see RSqlDatabase::GetReserveAccess()
|
sl@0
|
1013 |
@see RSqlDatabase::ReleaseReserveAccess()
|
sl@0
|
1014 |
*/
|
sl@0
|
1015 |
EXPORT_C TInt RSqlDatabase::ReserveDriveSpace(TInt aSize)
|
sl@0
|
1016 |
{
|
sl@0
|
1017 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_ENTRY, "Entry;0x%X;RSqlDatabase::ReserveDriveSpace;aSize=%d", (TUint)this, aSize));
|
sl@0
|
1018 |
//Usage of the IPC call arguments:
|
sl@0
|
1019 |
//Arg 0: [out] requested size
|
sl@0
|
1020 |
TInt err = Impl().Session().SendReceive(ESqlSrvDbReserveDriveSpace, TIpcArgs(aSize));
|
sl@0
|
1021 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RESERVEDRIVESPACE_EXIT, "Exit;0x%X;RSqlDatabase::ReserveDriveSpace;err=%d", (TUint)this, err));
|
sl@0
|
1022 |
return err;
|
sl@0
|
1023 |
}
|
sl@0
|
1024 |
|
sl@0
|
1025 |
/**
|
sl@0
|
1026 |
Frees the reserved disk space.
|
sl@0
|
1027 |
|
sl@0
|
1028 |
@see RSqlDatabase::ReserveDriveSpace()
|
sl@0
|
1029 |
@see RSqlDatabase::GetReserveAccess()
|
sl@0
|
1030 |
@see RSqlDatabase::ReleaseReserveAccess()
|
sl@0
|
1031 |
*/
|
sl@0
|
1032 |
EXPORT_C void RSqlDatabase::FreeReservedSpace()
|
sl@0
|
1033 |
{
|
sl@0
|
1034 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_ENTRY, "Entry;0x%X;RSqlDatabase::FreeReservedSpace", (TUint)this));
|
sl@0
|
1035 |
__SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbFreeReservedSpace);
|
sl@0
|
1036 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_FREERESERVEDSPACE_EXIT, "Exit;0x%X;RSqlDatabase::FreeReservedSpace;err=%d", (TUint)this, err));
|
sl@0
|
1037 |
}
|
sl@0
|
1038 |
|
sl@0
|
1039 |
/**
|
sl@0
|
1040 |
Gives the client an access to the already reserved disk space.
|
sl@0
|
1041 |
|
sl@0
|
1042 |
@return KErrNone, The operation has completed succesfully;
|
sl@0
|
1043 |
KErrNotFound, An attempt is made to get an access to a disk space, which is not reserved yet;
|
sl@0
|
1044 |
KErrInUse, An access to the reserved space has already been given;
|
sl@0
|
1045 |
Note that other system-wide error codes may also be returned.
|
sl@0
|
1046 |
|
sl@0
|
1047 |
@see RSqlDatabase::ReserveDriveSpace()
|
sl@0
|
1048 |
@see RSqlDatabase::FreeReservedSpace()
|
sl@0
|
1049 |
@see RSqlDatabase::ReleaseReserveAccess()
|
sl@0
|
1050 |
*/
|
sl@0
|
1051 |
EXPORT_C TInt RSqlDatabase::GetReserveAccess()
|
sl@0
|
1052 |
{
|
sl@0
|
1053 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_ENTRY, "Exit;0x%X;RSqlDatabase::GetReserveAccess", (TUint)this));
|
sl@0
|
1054 |
TInt err = Impl().Session().SendReceive(ESqlSrvDbGetReserveAccess);
|
sl@0
|
1055 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_GETRESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::GetReserveAccess;err=%d", (TUint)this, err));
|
sl@0
|
1056 |
return err;
|
sl@0
|
1057 |
}
|
sl@0
|
1058 |
|
sl@0
|
1059 |
/**
|
sl@0
|
1060 |
Releases the access to the reserved disk space.
|
sl@0
|
1061 |
|
sl@0
|
1062 |
@see RSqlDatabase::ReserveDriveSpace()
|
sl@0
|
1063 |
@see RSqlDatabase::FreeReservedSpace()
|
sl@0
|
1064 |
@see RSqlDatabase::GetReserveAccess()
|
sl@0
|
1065 |
*/
|
sl@0
|
1066 |
EXPORT_C void RSqlDatabase::ReleaseReserveAccess()
|
sl@0
|
1067 |
{
|
sl@0
|
1068 |
SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_ENTRY, "Entry;0x%X;RSqlDatabase::ReleaseReserveAccess", (TUint)this));
|
sl@0
|
1069 |
__SQLTRACE_BORDERVAR(TInt err =) Impl().Session().SendReceive(ESqlSrvDbReleaseReserveAccess);
|
sl@0
|
1070 |
SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLDATABASE_RELEASERESERVEACCESS_EXIT, "Exit;0x%X;RSqlDatabase::ReleaseReserveAccess;err=%d", (TUint)this, err));
|
sl@0
|
1071 |
}
|
sl@0
|
1072 |
|
sl@0
|
1073 |
/**
|
sl@0
|
1074 |
Returns a reference to the implementation object of RSqlDatabase - CSqlDatabaseImpl.
|
sl@0
|
1075 |
|
sl@0
|
1076 |
@panic SqlDb 2 Create() or Open() has not previously been called on this RSqlDatabase object.
|
sl@0
|
1077 |
|
sl@0
|
1078 |
@internalComponent
|
sl@0
|
1079 |
*/
|
sl@0
|
1080 |
CSqlDatabaseImpl& RSqlDatabase::Impl() const
|
sl@0
|
1081 |
{
|
sl@0
|
1082 |
__ASSERT_ALWAYS(iImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));
|
sl@0
|
1083 |
return *iImpl;
|
sl@0
|
1084 |
}
|