os/persistentdata/persistentstorage/sql/SRC/Client/SqlStmtSession.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-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 // NTT DOCOMO, INC - Fix for Bug 1915 "SQL server panics when using long column type strings"
    13 //
    14 // Description:
    15 //
    16 
    17 #ifndef __SQLSTMTSESSION_H__
    18 #define __SQLSTMTSESSION_H__
    19 
    20 #include <e32std.h>
    21 #include "SqlDbSession.h"		//RSqlDbSession
    22 #include "SqlBufFlat.h"			//RSqlBufFlat
    23 #include "IPCBuf.h"				//HIpcBuf
    24 
    25 /**
    26 RSqlStatementSession class is used for "prepare once execute many times" supplied to PrepareL() SQL 
    27 statement.
    28 RSqlStatementSession::PrepareL() must be called for preparing the SQL statement.
    29 If the SQL statement contains parameters, Bind() must be called before calling Next() or Exec() 
    30 to bind the parameter values.
    31 RSqlStatementSession class shall not be used for executing a set of SQL statements, separated with ";".
    32 PrepareL() will report this as a KErrArgument error.
    33 
    34 RSqlStatementSession class hides all details about the communication with the database server.
    35 No database specific header files should be seen or used outside the session class.
    36 
    37 Usage patterns:
    38 
    39 1) SQL statement which does not return a record set.
    40 
    41 @code
    42 	RSqlStatementSession sess;
    43 	TInt err = sess.Prepare(...);
    44 	...
    45 	RSqlBufFlat paramBuf;
    46 	<Initialize "paramBuf" object>;
    47 begin:
    48 	err = sess.Bind(paramBuf);
    49 	err = sess.Exec();
    50 	err = sess.Reset();
    51 	<Now a new set of parameter values can be prepared and the statement can be executed again - from the "begin" label>;
    52 	
    53 	sess.Close();
    54 @endcode
    55 
    56 2) SQL statement which returns a record set.
    57 
    58 @code
    59 	RSqlStatementSession sess;
    60 	TInt err = sess.Prepare(...);
    61 	...
    62 	RSqlBufFlat paramBuf;
    63 	<Initialize "paramBuf" object>;
    64 	RSqlBufFlat columnBuf;
    65 	<Initialize "columnBuf" object. The element count must match the columns count>;
    66 begin:
    67 	err = sess.Bind(paramBuf);
    68 	while(sess.Next(columnBuf) == KSqlAtRow)
    69 		{
    70 		<process the record data - "columnBuf" set>;
    71 		}
    72 	err = sess.Reset();
    73 	<Now a new set of parameter values can be prepared and the statement can be executed again - from the "begin" label>;
    74 	
    75 	sess.Close();
    76 @endcode
    77 
    78 @internalComponent
    79 */
    80 NONSHARABLE_CLASS(RSqlStatementSession)
    81 	{
    82 public:	
    83 	inline RSqlStatementSession();
    84 	TInt Prepare(RSqlDbSession& aDbSession, const TDesC& aSqlStmt, TInt& aColumnCount, TInt& aParamCount);
    85 	TInt Prepare(RSqlDbSession& aDbSession, const TDesC8& aSqlStmt, TInt& aColumnCount, TInt& aParamCount);
    86 	void Close();
    87 	
    88 	inline TInt Reset();
    89 	inline TInt Exec();
    90 	inline void Exec(TRequestStatus& aStatus);
    91 	inline TInt BindExec(const RSqlBufFlat& aParamBuf);
    92 	inline void BindExec(const RSqlBufFlat& aParamBuf, TRequestStatus& aStatus);
    93 	inline TInt Next(RSqlBufFlat& aColumnBuf);
    94 	TInt BindNext(const RSqlBufFlat& aParamBuf, RSqlBufFlat& aColumnBuf);
    95 	TInt GetNames(TSqlSrvFunction aFunction, RSqlBufFlat& aNameBuf);
    96 	inline TInt ReadColumnValue(TInt aColumnIndex, TDes8& aBuf);
    97 	
    98 	inline MStreamBuf* ColumnSourceL(TInt aColumnIndex);
    99 	inline MStreamBuf* ParamSinkL(TSqlSrvFunction aFunction, TInt aParamIndex);
   100 
   101 	TInt GetDeclColumnTypes(RSqlBufFlat& aDeclColumnTypeBuf);	
   102 	
   103 private:
   104 	TInt DoBindNext(TSqlSrvFunction aFunction, TIpcArgs& aIpcArgs, RSqlBufFlat& aColumnBuf);
   105 	TInt Retry(RSqlBufFlat& aBufFlat, TInt aSize, TSqlBufFlatType aWhat);
   106 	inline RSqlDbSession& DbSession() const;
   107 
   108 private:
   109 	TInt			iHandle;
   110 	RSqlDbSession*	iDbSession;
   111 
   112 	};
   113 
   114 #include "SqlStmtSession.inl"
   115 
   116 #endif//__SQLSTMTSESSION_H__