First public contribution.
1 // Copyright (c) 2006-2010 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.
19 @panic SqlDb 2 In _DEBUG mode if the statement handle is 0 or the database session is NULL,
20 i.e. Prepare() has not yet been called on this RSqlStatementSession object.
22 @return A reference to the RSqlDbSession instance.
24 inline RSqlDbSession& RSqlStatementSession::DbSession() const
26 __ASSERT_DEBUG(iHandle > 0 && iDbSession != NULL, __SQLPANIC(ESqlPanicInvalidObj));
31 Creates unitialized RSqlStatementSession object.
33 inline RSqlStatementSession::RSqlStatementSession() :
40 Sends a request to the SQL server to reset the prepared SQL statement.
42 @return KErrNone The method completed successfully, system-wide error code otherwise.
44 inline TInt RSqlStatementSession::Reset()
46 return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtReset, ESqlSrvStatementHandle, iHandle));
50 Sends a request to the SQL server to execute the prepared SQL statement.
53 @return >=0, The operation has completed successfully. The number of database rows that were
54 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
55 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
56 if the operation has completed successfully (disregarding the number of the deleted rows);
57 KSqlErrStmtExpired, statement has expired (if new functions or collating sequences are
58 registered or if an authorizer function is added or changed);
59 KErrNoMemory, an out of memory condition has occurred.
60 Note that database specific errors categorised as ESqlDbError, and
61 other system-wide error codes may also be returned.
63 inline TInt RSqlStatementSession::Exec()
65 return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtExec, ESqlSrvStatementHandle, iHandle));
69 Sends a request asynchronously to the SQL server to execute the prepared SQL statement.
71 @param aStatus Completion status of asynchronous request, one of the following:
73 - >=0, The operation has completed successfully. The number of database rows that were
74 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
75 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
76 if the operation has completed successfully (disregarding the number of the deleted rows);
77 - KSqlErrStmtExpired, the SQL statement has expired (if new functions or
78 collating sequences have been registered or if an
79 authorizer function has been added or changed);
80 - KErrNoMemory, an out of memory condition has occurred - the statement
82 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
83 and other system-wide error codes.
86 inline void RSqlStatementSession::Exec(TRequestStatus& aStatus)
88 DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtAsyncExec, ESqlSrvStatementHandle, iHandle), aStatus);
92 Sends a request to the SQL server to execute the prepared SQL statement.
94 Usage of the IPC call arguments:
95 Arg 0: [out] parameter buffer length in bytes
96 Arg 1: [out] parameter buffer
98 @param aParamBuf A buffer with the parameter values
100 @return >=0, The operation has completed successfully. The number of database rows that were
101 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
102 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
103 if the operation has completed successfully (disregarding the number of the deleted rows);
104 KSqlErrStmtExpired, statement has expired (if new functions or collating sequences are
105 registered or if an authorizer function is added or changed);
106 KErrNoMemory, an out of memory condition has occurred.
107 Note that database specific errors categorised as ESqlDbError, and
108 other system-wide error codes may also be returned.
110 inline TInt RSqlStatementSession::BindExec(const RSqlBufFlat& aParamBuf)
112 TPtrC8 prmData(aParamBuf.BufDes());
113 return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtBindExec, ESqlSrvStatementHandle, iHandle), TIpcArgs(prmData.Length(), &prmData));
117 Sends a request asynchronously to the SQL server to execute the prepared SQL statement.
119 Usage of the IPC call arguments:
120 Arg 0: [out] parameter buffer length in bytes
121 Arg 1: [out] parameter buffer
123 @param aParamBuf A buffer with the parameter values
124 @param aStatus Completion status of asynchronous request, one of the following:
126 - >=0, The operation has completed successfully. The number of database rows that were
127 changed/inserted/deleted by the most recently completed INSERT/UPDATE/DELETE sql statement.
128 Exception: If the executed statement is "DELETE FROM <table>", then the function returns 0
129 if the operation has completed successfully (disregarding the number of the deleted rows);
130 - KSqlErrStmtExpired, the SQL statement has expired (if new functions or
131 collating sequences have been registered or if an
132 authorizer function has been added or changed);
133 - KErrNoMemory, an out of memory condition has occurred - the statement
135 Note that aStatus may be set with database specific errors categorised as ESqlDbError,
136 and other system-wide error codes.
139 inline void RSqlStatementSession::BindExec(const RSqlBufFlat& aParamBuf, TRequestStatus& aStatus)
141 const TDesC8& bufDes = aParamBuf.BufDes();
142 DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtAsyncBindExec, ESqlSrvStatementHandle, iHandle), TIpcArgs(bufDes.Length(), &bufDes), aStatus);
146 Sends a request to the SQL server to move to the next record which satisfies the
147 condition of the prepared SQL statement.
148 If there is a valid next record, the method transfers the column values from the server.
150 @param aColumnBuf It references RSqlBufFlat object where the column values will be stored.
152 @return KSqlAtRow, the record data is ready for processing by the caller;
153 KSqlAtEnd, there is no more record data;
154 KSqlErrBusy, the database file is locked;
155 KErrNoMemory, an out of memory condition has occurred - the statement
157 KSqlErrGeneral, a run-time error has occured - this function must not
159 KSqlErrMisuse, this function has been called after a previous call
160 returned KSqlAtEnd or KSqlErrGeneral.
161 KSqlErrStmtExpired, the SQL statement has expired (if new functions or
162 collating sequences have been registered or if an
163 authorizer function has been added or changed);
165 inline TInt RSqlStatementSession::Next(RSqlBufFlat& aColumnBuf)
168 return DoBindNext(ESqlSrvStmtNext, ipcArgs, aColumnBuf);
172 Sends a command to the server for retrieving a column data.
174 Usage of the IPC call arguments:
175 Arg 0: [out] column index
176 Arg 1: [out] column data buffer length in bytes
177 Arg 2: [in/out] column data buffer
179 inline TInt RSqlStatementSession::ReadColumnValue(TInt aColumnIndex, TDes8& aBuf)
181 return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtColumnValue, ESqlSrvStatementHandle, iHandle), TIpcArgs(aColumnIndex, aBuf.MaxLength(), &aBuf));
185 The method creates a read-only MStreamBuf derived object which allows the column with aColumnIndex index
186 to be accessed as a stream of bytes (if the column is a binary column) or characters
187 (if the column is a text column) and returns it to the caller.
189 Usage of the IPC call arguments:
190 Arg 0: [out] column index (0 based)
191 Arg 2: [in] ipc buffer, column source
193 The caller is responsible for the destroying of the read-only MStreamBuf derived object.
195 @param aColumnIndex Column index (starting from 0)
196 @return A pointer to the created read-only memory MStreamBuf derived object.
198 @leave KErrNoMemory, an out of memory condition has occured;
200 inline MStreamBuf* RSqlStatementSession::ColumnSourceL(TInt aColumnIndex)
202 TIpcArgs args(aColumnIndex);
203 HIpcBuf* columnSource = HIpcBuf::NewL(DbSession(), ::MakeMsgCode(ESqlSrvStmtColumnSource, ESqlSrvStatementHandle, iHandle), args);
208 The method creates an IPC object with buffering capabilities, allowing to stream out the data of the
209 parameter with aParameterIndex index and returns this MStreamBuf derived object to the caller.
211 The caller is responsible for the destroying of the MStreamBuf derived object.
213 Arg 0: [out] parameter index (0 based)
214 Arg 2: [in] ipc buffer, parameter source
216 @param aParameterIndex Parameter index (starting from 0)
218 @return A pointer to the created MStreamBuf derived object.
220 @leave KErrNoMemory, an out of memory condition has occured;
222 inline MStreamBuf* RSqlStatementSession::ParamSinkL(TSqlSrvFunction aFunction, TInt aParamIndex)
224 TIpcArgs args(aParamIndex);
225 HIpcBuf* paramSink = HIpcBuf::NewL(DbSession(), ::MakeMsgCode(aFunction, ESqlSrvStatementHandle, iHandle), args);