os/persistentdata/persistentstorage/sql/SRC/Client/SqlStmtSession.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // SqlDbSession.inl
    15 // 
    16 //
    17 
    18 /**
    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.
    21 			   
    22 @return A reference to the RSqlDbSession instance.
    23 */
    24 inline RSqlDbSession& RSqlStatementSession::DbSession() const
    25 	{
    26 	__ASSERT_DEBUG(iHandle > 0 && iDbSession != NULL, __SQLPANIC(ESqlPanicInvalidObj));
    27 	return *iDbSession;
    28 	}
    29 
    30 /**
    31 Creates unitialized RSqlStatementSession object.
    32 */
    33 inline RSqlStatementSession::RSqlStatementSession() :
    34 	iHandle(-1),
    35 	iDbSession(NULL)
    36 	{
    37 	}
    38 	
    39 /**
    40 Sends a request to the SQL server to reset the prepared SQL statement.
    41 
    42 @return KErrNone The method completed successfully, system-wide error code otherwise.
    43 */
    44 inline TInt RSqlStatementSession::Reset()
    45 	{
    46 	return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtReset, ESqlSrvStatementHandle, iHandle));
    47 	}
    48 
    49 /**
    50 Sends a request to the SQL server to execute the prepared SQL statement.
    51 
    52 
    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.
    62 */
    63 inline TInt RSqlStatementSession::Exec()
    64 	{
    65 	return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtExec, ESqlSrvStatementHandle, iHandle));
    66 	}
    67 
    68 /**
    69 Sends a request asynchronously to the SQL server to execute the prepared SQL statement.
    70 
    71 @param aStatus Completion status of asynchronous request, one of the following:
    72 @code
    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
    81                       will be reset.
    82                       Note that aStatus may be set with database specific errors categorised as ESqlDbError, 
    83                       and other system-wide error codes.
    84 @endcode
    85 */
    86 inline void RSqlStatementSession::Exec(TRequestStatus& aStatus)
    87 	{
    88 	DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtAsyncExec, ESqlSrvStatementHandle, iHandle), aStatus);
    89 	}
    90 
    91 /**
    92 Sends a request to the SQL server to execute the prepared SQL statement.
    93 
    94 Usage of the IPC call arguments:
    95 Arg 0: [out]		parameter buffer length in bytes
    96 Arg 1: [out]		parameter buffer
    97 
    98 @param aParamBuf A buffer with the parameter values
    99 
   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.
   109 */
   110 inline TInt RSqlStatementSession::BindExec(const RSqlBufFlat& aParamBuf)
   111 	{
   112 	TPtrC8 prmData(aParamBuf.BufDes());
   113 	return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtBindExec, ESqlSrvStatementHandle, iHandle), TIpcArgs(prmData.Length(), &prmData));
   114 	}
   115 
   116 /**
   117 Sends a request asynchronously to the SQL server to execute the prepared SQL statement.
   118 
   119 Usage of the IPC call arguments:
   120 Arg 0: [out]		parameter buffer length in bytes
   121 Arg 1: [out]		parameter buffer
   122 
   123 @param aParamBuf A buffer with the parameter values
   124 @param aStatus Completion status of asynchronous request, one of the following:
   125 @code
   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
   134                       will be reset.
   135                       Note that aStatus may be set with database specific errors categorised as ESqlDbError, 
   136                       and other system-wide error codes.
   137 @endcode
   138 */
   139 inline void RSqlStatementSession::BindExec(const RSqlBufFlat& aParamBuf, TRequestStatus& aStatus)
   140 	{
   141 	const TDesC8& bufDes = aParamBuf.BufDes();
   142 	DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtAsyncBindExec, ESqlSrvStatementHandle, iHandle), TIpcArgs(bufDes.Length(), &bufDes), aStatus);
   143 	}
   144 
   145 /**
   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.
   149 
   150 @param aColumnBuf It references RSqlBufFlat object where the column values will be stored.
   151 
   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
   156                         will be reset;
   157         KSqlErrGeneral, a run-time error has occured - this function must not
   158                         be called again;        
   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);
   164 */
   165 inline TInt RSqlStatementSession::Next(RSqlBufFlat& aColumnBuf)
   166 	{
   167 	TIpcArgs ipcArgs;
   168 	return DoBindNext(ESqlSrvStmtNext, ipcArgs, aColumnBuf);
   169 	}
   170 
   171 /**
   172 Sends a command to the server for retrieving a column data.
   173 
   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
   178 */	
   179 inline TInt RSqlStatementSession::ReadColumnValue(TInt aColumnIndex, TDes8& aBuf)
   180 	{
   181 	return DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtColumnValue, ESqlSrvStatementHandle, iHandle), TIpcArgs(aColumnIndex, aBuf.MaxLength(), &aBuf));
   182 	}
   183 
   184 /**
   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.
   188 
   189 Usage of the IPC call arguments:
   190 Arg 0: [out]	column index (0 based)
   191 Arg 2: [in]		ipc buffer, column source
   192 
   193 The caller is responsible for the destroying of the read-only MStreamBuf derived object.
   194 
   195 @param aColumnIndex Column index (starting from 0)
   196 @return A pointer to the created read-only memory MStreamBuf derived object.
   197 
   198 @leave KErrNoMemory, an out of memory condition has occured;
   199 */
   200 inline MStreamBuf* RSqlStatementSession::ColumnSourceL(TInt aColumnIndex)
   201 	{
   202 	TIpcArgs args(aColumnIndex);
   203 	HIpcBuf* columnSource = HIpcBuf::NewL(DbSession(), ::MakeMsgCode(ESqlSrvStmtColumnSource, ESqlSrvStatementHandle, iHandle), args);
   204 	return columnSource;
   205 	}
   206 
   207 /**
   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.
   210 
   211 The caller is responsible for the destroying of the MStreamBuf derived object.
   212 
   213 Arg 0: [out]	parameter index (0 based)
   214 Arg 2: [in]		ipc buffer, parameter source
   215 
   216 @param aParameterIndex Parameter index (starting from 0)
   217 
   218 @return A pointer to the created MStreamBuf derived object.
   219 
   220 @leave KErrNoMemory, an out of memory condition has occured;
   221 */
   222 inline MStreamBuf* RSqlStatementSession::ParamSinkL(TSqlSrvFunction aFunction, TInt aParamIndex)
   223 	{
   224 	TIpcArgs args(aParamIndex);
   225 	HIpcBuf* paramSink = HIpcBuf::NewL(DbSession(), ::MakeMsgCode(aFunction, ESqlSrvStatementHandle, iHandle), args);
   226 	return paramSink;
   227 	}