Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Initializes RSqlDbSession data members with their default values.
18 inline RSqlDbSession::RSqlDbSession() :
19 iLastErrorMessage(NULL)
24 Sends a command to the server to detach previously attached database.
26 @param aDbName Logical database name.
28 @return KErrNone, operation has completed successfully;
29 KErrNotFound, no attached database with aDbName name.
30 Note that database specific errors categorised as ESqlDbError, and
31 other system-wide error codes may also be returned.
33 Usage of the IPC call arguments:
34 Arg 0: [out] Logical database name length.
35 Arg 1: [out] Logical database name.
37 inline TInt RSqlDbSession::Detach(const TDesC& aDbName)
39 return SendReceive(ESqlSrvDbDetach, TIpcArgs(aDbName.Length(), &aDbName));
43 Executes one or more 16-bit SQL statements.
45 The method sends a message to the SQL server containing one or more 16-bit SQL statements to be executed.
46 SQL statements of any kind can be executed, but the method won't return any record(s)
47 if the SQL statement type is "SELECT".
48 If the SQL statement(s) contains one or more parameters, these parameters will be set to NULL before the
50 If the call fails and the error class is ESqlDbError, a text description of the error can be obtained using
51 LastErrorMessage() method.
53 @param aSqlStmt String containing one or more 8/16-bit SQL statements, separated with ';'.
55 @return >=0, The operation has completed successfully. The number of database rows that were
56 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
57 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
58 if the operation has completed successfully (disregarding the number of the deleted rows);
59 KErrNoMemory, an out of memory condition has occured;
60 KSqlErrGeneral, Syntax error. A text message describing the problem can be obtained calling
63 Usage of the IPC call arguments:
64 Arg 0: [out] 16-bit character length of SQL statement.
65 Arg 1: [out] SQL statement(s).
67 inline TInt RSqlDbSession::Exec(const TDesC& aSqlStmt)
69 return SendReceive(ESqlSrvDbExec16, TIpcArgs(aSqlStmt.Length(), &aSqlStmt));
73 Executes one or more 8-bit SQL statements.
75 The method sends a message to the SQL server containing one or more 8-bit SQL statements to be executed.
76 SQL statements of any kind can be executed, but the method won't return any record(s)
77 if the SQL statement type is "SELECT".
78 If the SQL statement(s) contains one or more parameters, these parameters will be set to NULL before the
80 If the call fails and the error class is ESqlDbError, a text description of the error can be obtained using
81 LastErrorMessage() method.
83 @param aSqlStmt String containing one or more 8-bit SQL statements, separated with ';'.
85 @return >=0, The operation has completed successfully. The number of database rows that were
86 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
87 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
88 if the operation has completed successfully (disregarding the number of the deleted rows);
89 KErrNoMemory, an out of memory condition has occured;
90 KSqlErrGeneral, Syntax error. A text message describing the problem can be obtained calling
93 Usage of the IPC call arguments:
94 Arg 0: [out] 8-bit character length of SQL statement.
95 Arg 1: [out] SQL statement(s).
97 inline TInt RSqlDbSession::Exec(const TDesC8& aSqlStmt)
99 return SendReceive(ESqlSrvDbExec8, TIpcArgs(aSqlStmt.Length(), &aSqlStmt));
103 Executes one or more 16-bit SQL statements asynchronously.
105 The method sends a message to the SQL server containing one or more 16-bit SQL statements to be executed.
106 SQL statements of any kind can be executed, but the method won't return any record(s)
107 if the SQL statement type is "SELECT".
108 If the SQL statement(s) contains one or more parameters, these parameters will be set to NULL before the
110 If the call fails and the error class is ESqlDbError, a text description of the error can be obtained using
111 LastErrorMessage() method.
113 @param aSqlStmt String containing one or more 16-bit SQL statements, separated with ';'.
114 @param aStatus Completion status of asynchronous request, one of the following:
116 - >=0, The operation has completed successfully. The number of database rows that were
117 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
118 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
119 if the operation has completed successfully (disregarding the number of the deleted rows);
120 - KSqlErrStmtExpired, the SQL statement has expired (if new functions or
121 collating sequences have been registered or if an
122 authorizer function has been added or changed);
123 - KErrNoMemory, an out of memory condition has occurred - the statement
125 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
126 and other system-wide error codes.
129 Usage of the IPC call arguments:
130 Arg 0: [out] 16-bit character length of SQL statement.
131 Arg 1: [out] SQL statement(s).
133 inline void RSqlDbSession::Exec(const TDesC& aSqlStmt, TRequestStatus& aStatus)
135 SendReceive(ESqlSrvDbExec16, TIpcArgs(aSqlStmt.Length(), &aSqlStmt), aStatus);
139 Executes one or more 8-bit SQL statements asynchronously.
141 The method sends a message to the SQL server containing one or more 8-bit SQL statements to be executed.
142 SQL statements of any kind can be executed, but the method won't return any record(s)
143 if the SQL statement type is "SELECT".
144 If the SQL statement(s) contains one or more parameters, these parameters will be set to NULL before the
146 If the call fails and the error class is ESqlDbError, a text description of the error can be obtained using
147 LastErrorMessage() method.
149 @param aSqlStmt String containing one or more 8-bit SQL statements, separated with ';'.
150 @param aStatus Completion status of asynchronous request, one of the following:
152 - >=0, The operation has completed successfully. The number of database rows that were
153 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
154 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
155 if the operation has completed successfully (disregarding the number of the deleted rows);
156 - KSqlErrStmtExpired, the SQL statement has expired (if new functions or
157 collating sequences have been registered or if an
158 authorizer function has been added or changed);
159 - KErrNoMemory, an out of memory condition has occurred - the statement
161 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
162 and other system-wide error codes.
165 Usage of the IPC call arguments:
166 Arg 0: [out] 8-bit character length of SQL statement.
167 Arg 1: [out] SQL statement(s).
169 inline void RSqlDbSession::Exec(const TDesC8& aSqlStmt, TRequestStatus& aStatus)
171 SendReceive(ESqlSrvDbExec8, TIpcArgs(aSqlStmt.Length(), &aSqlStmt), aStatus);
175 Sets the transaction isolation level.
177 The method sends a message to the SQL server to set the desired isolation level.
178 The default isolation level is RSqlDatabase::ESerializable, but can be changed to
179 RSqlDatabase::EReadUncommitted for database connections which share the access to the same database file.
181 @param aIsolationLevel Desired isolation level: RSqlDatabase::ESerializable or RSqlDatabase::EReadUncommitted.
182 @return KErrNone, the operation has completed successfully.
183 The function may also return some other system-wide error codes.
185 Usage of the IPC call arguments:
186 Arg 0: [out] Isolation level type.
188 inline TInt RSqlDbSession::SetIsolationLevel(RSqlDatabase::TIsolationLevel aIsolationLevel)
190 return SendReceive(ESqlSrvDbSetIsolationLevel, TIpcArgs(static_cast <TInt> (aIsolationLevel)));
194 Usage of the IPC call arguments:
195 Arg 0: [out] (16-bit character length of SQL statement) | (expected column value type << 24).
196 Arg 1: [out] SQL statement.
197 Arg 2: [out] Byte max length of the receiving buffer
198 Arg 3: [in/out] The receiving buffer
200 inline TInt RSqlDbSession::ExecScalarFullSelect(const TDesC& aSqlStmt, TSqlColumnType aType, TDes8& aRes)
202 return SendReceive(ESqlSrvDbScalarFullSelect16, TIpcArgs(aSqlStmt.Length() | (aType << 24), &aSqlStmt, aRes.MaxLength(), &aRes));
206 Usage of the IPC call arguments:
207 Arg 0: [out] (8-bit character length of SQL statement) | (expected column value type << 24).
208 Arg 1: [out] SQL statement.
209 Arg 2: [out] Byte max length of the receiving buffer
210 Arg 3: [in/out] The receiving buffer
212 inline TInt RSqlDbSession::ExecScalarFullSelect(const TDesC8& aSqlStmt, TSqlColumnType aType, TDes8& aRes)
214 return SendReceive(ESqlSrvDbScalarFullSelect8, TIpcArgs(aSqlStmt.Length() | (aType << 24), &aSqlStmt, aRes.MaxLength(), &aRes));
218 The method sends a message to the SQL server.
220 @param aFunction Function code
222 @return KErrNone or system-wide error codes.
224 inline TInt RSqlDbSession::SendReceive(TInt aFunction)
226 return RSessionBase::SendReceive(aFunction);
230 The method sends a message asynchronously to the SQL server.
232 @param aFunction Function code
234 @return KErrNone or system-wide error codes.
236 inline void RSqlDbSession::SendReceive(TInt aFunction, TRequestStatus& aStatus)
238 RSessionBase::SendReceive(aFunction, aStatus);
242 The method sends a message with arguments to the SQL server.
244 @param aFunction Function code
245 @param aArgs Message arguments
247 @return KErrNone or system-wide error codes.
249 inline TInt RSqlDbSession::SendReceive(TInt aFunction, const TIpcArgs& aArgs)
251 return RSessionBase::SendReceive(aFunction, aArgs);
255 The method sends asynchronously a message with arguments to the SQL server.
257 @param aFunction Function code
258 @param aArgs Message arguments
259 @param aStatus Completion status of asynchronous request
261 inline void RSqlDbSession::SendReceive(TInt aFunction,const TIpcArgs& aArgs, TRequestStatus& aStatus)
263 RSessionBase::SendReceive(aFunction, aArgs, aStatus);