First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
12 // NTT DOCOMO, INC - Fix for Bug 1915 "SQL server panics when using long column type strings"
18 #include "SqlStmtSession.h" //RSqlStatementSession
19 #include "OstTraceDefinitions.h"
20 #ifdef OST_TRACE_COMPILER_IN_USE
21 #include "SqlStmtSessionTraces.h"
23 #include "SqlTraceDef.h"
26 Sends a request to the SQL server to prepare 16-bit aSqlStmt statement.
28 Usage of the IPC call arguments:
29 Arg 0: [in/out] data buffer for the column and parameter count.
30 Arg 1: [out] statement length in characters
31 Arg 2: [out] 16-bit statement
33 @param aDbSession A reference to RSqlDbSession instance.
34 @param aSqlStmt 16-bit SQL statement.
35 @param aColumnCount Output parameter. Statement column count.
36 @param aParamCount Output parameter. Statement parameter count.
38 @return KErrNoMemory, an out of memory condition has occured;
39 KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
40 Note that the function may return some database specific errors categorised as
41 ESqlDbError or other system-wide error codes;
42 KErrNone The operation has completed successfully.
44 @panic SqlDb 7 In _DEBUG mode if the statement handle is 0.
46 TInt RSqlStatementSession::Prepare(RSqlDbSession& aDbSession, const TDesC& aSqlStmt,
47 TInt& aColumnCount, TInt& aParamCount)
49 iDbSession = &aDbSession;
51 TPckg<TSqlIpcData> pckg(data);
52 TUint stmtLen = aSqlStmt.Length();
53 iHandle = iDbSession->SendReceive(ESqlSrvStmtPrepare16, TIpcArgs(&pckg, stmtLen, &aSqlStmt));
54 __ASSERT_DEBUG(iHandle != 0, __SQLPANIC(ESqlPanicInternalError));
55 aColumnCount = static_cast <TInt> (data.iPrm1);
56 aParamCount = static_cast <TInt> (data.iPrm2);
57 SQL_TRACE_SESSION(OstTraceExt2(TRACE_INTERNALS, RSQLSTATEMENTSESSION_PREPARE16, "0x%X;RSqlStatementSession::Prepare-16;iHandle=%d", (TUint)this, iHandle));
58 return iHandle > 0 ? KErrNone : iHandle;
62 Sends a request to the SQL server to prepare 8-bit aSqlStmt statement.
64 Usage of the IPC call arguments:
65 Arg 0: [in/out] data buffer for the column and parameter count.
66 Arg 1: [out] statement length in characters
67 Arg 2: [out] 8-bit statement
69 @param aDbSession A reference to RSqlDbSession instance.
70 @param aSqlStmt 8-bit SQL statement.
71 @param aColumnCount Output parameter. Statement column count.
72 @param aParamCount Output parameter. Statement parameter count.
74 @return KErrNoMemory, an out of memory condition has occured;
75 KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
76 Note that the function may return some database specific errors categorised as
77 ESqlDbError or other system-wide error codes;
78 KErrNone The operation has completed successfully.
80 @panic SqlDb 7 In _DEBUG mode if the statement handle is 0.
82 TInt RSqlStatementSession::Prepare(RSqlDbSession& aDbSession, const TDesC8& aSqlStmt,
83 TInt& aColumnCount, TInt& aParamCount)
85 iDbSession = &aDbSession;
87 TPckg<TSqlIpcData> pckg(data);
88 TUint stmtLen = aSqlStmt.Length();
89 iHandle = iDbSession->SendReceive(ESqlSrvStmtPrepare8, TIpcArgs(&pckg, stmtLen, &aSqlStmt));
90 __ASSERT_DEBUG(iHandle != 0, __SQLPANIC(ESqlPanicInternalError));
91 aColumnCount = static_cast <TInt> (data.iPrm1);
92 aParamCount = static_cast <TInt> (data.iPrm2);
93 SQL_TRACE_SESSION(OstTraceExt2(TRACE_INTERNALS, RSQLSTATEMENTSESSION_PREPARE8, "0x%X;RSqlStatementSession::Prepare-8;iHandle=%d", (TUint)this, iHandle));
94 return iHandle > 0 ? KErrNone : iHandle;
98 Sends a request to the server to close the statement handle.
99 Closes the session object.
101 void RSqlStatementSession::Close()
103 SQL_TRACE_SESSION(OstTraceExt2(TRACE_INTERNALS, RSQLSTATEMENTSESSION_CLOSE, "0x%X;RSqlStatementSession::Close;iHandle=%d", (TUint)this, iHandle));
104 if(iDbSession && iHandle > 0)
106 (void)iDbSession->SendReceive(::MakeMsgCode(ESqlSrvStmtClose, ESqlSrvStatementHandle, iHandle));
113 Binds the statement parameters and sends a request to the SQL server to move to the next record which satisfies the
114 condition of the prepared SQL statement.
115 If there is a valid next record, the method transfers the column values from the server.
117 @param aParamBuf It references RSqlBufFlat object where the parameter values are stored.
118 @param aColumnBuf It references RSqlBufFlat object where the column values will be stored.
120 @return KSqlAtRow, the record data is ready for processing by the caller;
121 KSqlAtEnd, there is no more record data;
122 KSqlErrBusy, the database file is locked;
123 KErrNoMemory, an out of memory condition has occurred - the statement
125 KSqlErrGeneral, a run-time error has occured - this function must not
127 KSqlErrMisuse, this function has been called after a previous call
128 returned KSqlAtEnd or KSqlErrGeneral.
129 KSqlErrStmtExpired, the SQL statement has expired (if new functions or
130 collating sequences have been registered or if an
131 authorizer function has been added or changed);
133 TInt RSqlStatementSession::BindNext(const RSqlBufFlat& aParamBuf, RSqlBufFlat& aColumnBuf)
135 TPtrC8 prmData(aParamBuf.BufDes());
137 ipcArgs.Set(0, prmData.Length());
138 ipcArgs.Set(1, &prmData);
139 return DoBindNext(ESqlSrvStmtBindNext, ipcArgs, aColumnBuf);
143 Implements RSqlStatementSession::Next() and RSqlStatementSession::BindNext().
144 Sends a "Next" command to the server combined with optional "Bind" command.
145 In a single IPC call the statement parameters will be bound and the current row columns - returned.
146 If the client side flat buffer is not big enough, a second IPC call will be made after reallocating the buffer.
148 Usage of the IPC call arguments:
149 Arg 0: [out] parameter buffer length in bytes
150 Arg 1: [out] parameter buffer
151 Arg 2: [out] column buffer length in bytes
152 Arg 3: [in/out] column buffer
154 @see RSqlStatementSession::Next()
155 @see RSqlStatementSession::BindNext()
157 TInt RSqlStatementSession::DoBindNext(TSqlSrvFunction aFunction, TIpcArgs& aIpcArgs, RSqlBufFlat& aColumnBuf)
160 aIpcArgs.Set(2, aColumnBuf.MaxSize());
161 aIpcArgs.Set(3, &aColumnBuf.BufPtr());
162 TInt err = DbSession().SendReceive(::MakeMsgCode(aFunction, ESqlSrvStatementHandle, iHandle), aIpcArgs);
163 if(err > KSqlClientBufOverflowCode)
165 err = Retry(aColumnBuf, err - KSqlClientBufOverflowCode, ESqlColumnValuesBuf);
175 Sends a command to the server for retrieving parameter names or column names.
177 Usage of the IPC call arguments:
178 Arg 0: [out] buffer length in bytes
179 Arg 1: [in/out] buffer
181 TInt RSqlStatementSession::GetNames(TSqlSrvFunction aFunction, RSqlBufFlat& aNameBuf)
184 TPtr8& ptr = aNameBuf.BufPtr();
185 TInt err = DbSession().SendReceive(::MakeMsgCode(aFunction, ESqlSrvStatementHandle, iHandle), TIpcArgs(ptr.MaxLength(), &ptr));
186 if(err > KSqlClientBufOverflowCode)
188 err = Retry(aNameBuf, err - KSqlClientBufOverflowCode, aFunction == ESqlSrvStmtColumnNames ? ESqlColumnNamesBuf : ESqlParamNamesBuf);
194 Sends a command to the server for retrieving specified data (aWhat parameter).
196 Usage of the IPC call arguments:
197 Arg 0: [out] The type of the data to be retrieved
198 Arg 1: [in/out] Data buffer
200 TInt RSqlStatementSession::Retry(RSqlBufFlat& aBufFlat, TInt aSize, TSqlBufFlatType aWhat)
203 TInt err = aBufFlat.ReAlloc(aSize);
206 TPtr8& ptr = aBufFlat.BufPtr();
207 err = DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtBufFlat, ESqlSrvStatementHandle, iHandle), TIpcArgs(aWhat, &ptr));
213 Sends a command to the server for retrieving the declared types of columns
215 Usage of the IPC call arguments:
216 Arg 0: [out] buffer length in bytes
217 Arg 1: [in/out] buffer
219 TInt RSqlStatementSession::GetDeclColumnTypes(RSqlBufFlat& aDeclColumnTypeBuf)
221 aDeclColumnTypeBuf.Reset();
222 TPtr8& ptr = aDeclColumnTypeBuf.BufPtr();
223 TInt err = DbSession().SendReceive(::MakeMsgCode(ESqlSrvStmtDeclColumnTypes, ESqlSrvStatementHandle, iHandle), TIpcArgs(ptr.MaxLength(), &ptr));
224 if(err > KSqlClientBufOverflowCode)
226 err = Retry(aDeclColumnTypeBuf, err - KSqlClientBufOverflowCode, ESqlDeclColumnTypesBuf);