sl@0
|
1 |
// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// /////////////////////// RSqlLongColumnColl ////////////////////////////////////////////
|
sl@0
|
15 |
// Sets the default granularity of the collection.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
inline RSqlLongColumnColl::RSqlLongColumnColl() :
|
sl@0
|
20 |
iValues(KLongColumnCollGranularity)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
}
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Releases the allocated memory.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
inline void RSqlLongColumnColl::Close()
|
sl@0
|
28 |
{
|
sl@0
|
29 |
LONGCOL_INVARIANT();
|
sl@0
|
30 |
Reset();
|
sl@0
|
31 |
iValues.Close();
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Destroys all long column values in the collection, without destroying the collection object.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
inline void RSqlLongColumnColl::Reset()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
LONGCOL_INVARIANT();
|
sl@0
|
40 |
for(TInt i=iValues.Count()-1;i>=0;--i)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
delete iValues[i].iData;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
iValues.Reset();
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
Constructs and returns a TPtrC object to the long column value, identified by aColumnIndex argument.
|
sl@0
|
49 |
@param aColumnIndex Column index
|
sl@0
|
50 |
@return A TPtrC object to the long column value
|
sl@0
|
51 |
@panic SqlDb 4 In _DEBUG mode, aColumnIndex value is negative.
|
sl@0
|
52 |
@panic SqlDb 7 There is no long column value with aColumnIndex index.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
inline TPtrC RSqlLongColumnColl::Text(TInt aColumnIndex) const
|
sl@0
|
55 |
{
|
sl@0
|
56 |
__ASSERT_DEBUG(aColumnIndex >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
57 |
LONGCOL_INVARIANT();
|
sl@0
|
58 |
TInt rc = FindValue(aColumnIndex);
|
sl@0
|
59 |
__ASSERT_ALWAYS(rc >= 0, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
60 |
TPtrC8 ptr(iValues[rc].iData->Des());
|
sl@0
|
61 |
return TPtrC(reinterpret_cast <const TUint16*> (ptr.Ptr()), ptr.Length() / sizeof(TUint16));
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Constructs and returns a TPtrC8 object to the long column value, identified by aColumnIndex argument.
|
sl@0
|
66 |
@param aColumnIndex Column index
|
sl@0
|
67 |
@return A TPtrC8 object to the long column value
|
sl@0
|
68 |
@panic SqlDb 4 In _DEBUG mode, aColumnIndex value is negative.
|
sl@0
|
69 |
@panic SqlDb 7 There is no long column value with aColumnIndex index.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
inline TPtrC8 RSqlLongColumnColl::Binary(TInt aColumnIndex) const
|
sl@0
|
72 |
{
|
sl@0
|
73 |
__ASSERT_DEBUG(aColumnIndex >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
74 |
LONGCOL_INVARIANT();
|
sl@0
|
75 |
TInt rc = FindValue(aColumnIndex);
|
sl@0
|
76 |
__ASSERT_ALWAYS(rc >= 0, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
77 |
return iValues[rc].iData->Des();
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Returns true if there is a long column value in the collection, which index is aColumnIndex.
|
sl@0
|
82 |
@param aColumnIndex Column index
|
sl@0
|
83 |
@return True if there is a long column value in the collection, which index is aColumnIndex.
|
sl@0
|
84 |
@panic SqlDb 4 In _DEBUG mode, aColumnIndex value is negative.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
inline TBool RSqlLongColumnColl::IsPresent(TInt aColumnIndex) const
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__ASSERT_DEBUG(aColumnIndex >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
89 |
LONGCOL_INVARIANT();
|
sl@0
|
90 |
return FindValue(aColumnIndex) >= 0;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
The method returns the index in the collection of the long column value, identified by aColumnIndex argument.
|
sl@0
|
95 |
@param aColumnIndex Column index
|
sl@0
|
96 |
@return The collection index of the long column value, identified by aColumnIndex,
|
sl@0
|
97 |
KErrNotFound otherwise.
|
sl@0
|
98 |
@panic SqlDb 4 In _DEBUG mode, aColumnIndex value is negative.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
inline TInt RSqlLongColumnColl::FindValue(TInt aColumnIndex) const
|
sl@0
|
101 |
{
|
sl@0
|
102 |
__ASSERT_DEBUG(aColumnIndex >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
103 |
return iValues.Find(aColumnIndex, &RSqlLongColumnColl::TData::Compare);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
Initializes the RSqlLongColumnColl::TData instance with the column index, and a pointer to the column data
|
sl@0
|
108 |
@param aIndex Column index
|
sl@0
|
109 |
@param aData A HBufC8 pointer to the column data. Cannot be NULL, this is a long column value
|
sl@0
|
110 |
@panic SqlDb 4 In _DEBUG mode, aColumnIndex value is negative or aData is NULL.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
inline RSqlLongColumnColl::TData::TData(TInt aIndex, HBufC8* aData) :
|
sl@0
|
113 |
iIndex(aIndex),
|
sl@0
|
114 |
iData(aData)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
__ASSERT_DEBUG(aIndex >= 0, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
117 |
__ASSERT_DEBUG(aData != NULL, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
121 |
////////////////////////// CSqlStatementImpl ////////////////////////////////////////////
|
sl@0
|
122 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
Initializes the created CSqlDatabaseImpl object.
|
sl@0
|
126 |
Works with 8/16-bit SQL statements.
|
sl@0
|
127 |
|
sl@0
|
128 |
@param aDatabase A reference to CSqlDatabaseImpl object.
|
sl@0
|
129 |
@param aSqlStmt 8/16-bit string containing the SQL statement.
|
sl@0
|
130 |
|
sl@0
|
131 |
@return KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
132 |
KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
|
sl@0
|
133 |
Note that the function may leave with some database specific errors categorised as
|
sl@0
|
134 |
ESqlDbError or other system-wide error codes;
|
sl@0
|
135 |
KErrNone Operation has completed successfully.
|
sl@0
|
136 |
|
sl@0
|
137 |
@panic SqlDb 7 In _DEBUG mode, invalid column count.
|
sl@0
|
138 |
|
sl@0
|
139 |
@see CSqlStatementImpl::New()
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
template <class DES> TInt CSqlStatementImpl::Construct(CSqlDatabaseImpl& aDatabase, const DES& aSqlStmt)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
TInt err = iSqlStmtSession.Prepare(aDatabase.Session(), aSqlStmt, iColumnCnt, iParamCnt);
|
sl@0
|
144 |
if(err != KErrNone)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
return err;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
__ASSERT_DEBUG(iColumnCnt >= 0, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
149 |
err = iColumnValueBuf.SetCount(iColumnCnt);
|
sl@0
|
150 |
if(err != KErrNone)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
return err;
|
sl@0
|
153 |
}
|
sl@0
|
154 |
iColumnValBufIt.Set(iColumnValueBuf);
|
sl@0
|
155 |
if(iParamCnt > 0)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
err = iParamValueBuf.SetCount(iParamCnt);
|
sl@0
|
158 |
if(err != KErrNone)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
return err;
|
sl@0
|
161 |
}
|
sl@0
|
162 |
iParamValBufIt.Set(iParamValueBuf);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
return KErrNone;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
Template function, friend of CSqlStatementImpl, that is used for creation of CSqlStatementImpl objects.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aImpl A reference to a CSqlStatementImpl pointer. Will be initialized after a successfull CSqlStatementImpl construction.
|
sl@0
|
171 |
@param aDatabase A reference to a CSqlDatabaseImpl object.
|
sl@0
|
172 |
@param aSqlStmt The SQL statement: 8-bit or 16-bit.
|
sl@0
|
173 |
|
sl@0
|
174 |
@return KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
175 |
KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
|
sl@0
|
176 |
Note that the function may leave with some database specific errors categorised as
|
sl@0
|
177 |
ESqlDbError or other system-wide error codes;
|
sl@0
|
178 |
KErrNone Operation has completed successfully.
|
sl@0
|
179 |
|
sl@0
|
180 |
@internalComponent
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
template <class DES> TInt SqlCreateStatement(CSqlStatementImpl*& aImpl, CSqlDatabaseImpl& aDatabase, const DES& aSqlStmt)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
TInt err = KErrNoMemory;
|
sl@0
|
185 |
aImpl = new CSqlStatementImpl;
|
sl@0
|
186 |
if(aImpl)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
err = aImpl->Construct(aDatabase, aSqlStmt);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
if(err != KErrNone)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
delete aImpl;
|
sl@0
|
193 |
aImpl = NULL;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
return err;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
Factory function for creating CSqlStatementImpl objects.
|
sl@0
|
200 |
Works with 16-bit SQL statements.
|
sl@0
|
201 |
|
sl@0
|
202 |
Creates CSqlStatementImpl instance and prepares the supplied SQL statement for execution.
|
sl@0
|
203 |
|
sl@0
|
204 |
Note that:
|
sl@0
|
205 |
- CSqlStatementImpl can prepare and execute both parametrized SQL statements and SQL statements
|
sl@0
|
206 |
without parameters;
|
sl@0
|
207 |
- CSqlStatementImpl cannot prepare and execute SQL strings containing more than one SQL statement;
|
sl@0
|
208 |
|
sl@0
|
209 |
@param aImpl A reference to CSqlStatementImpl pointer which will be set to point to the created instance
|
sl@0
|
210 |
@param aDatabase A reference to CSqlDatabaseImpl object.
|
sl@0
|
211 |
@param aSqlStmt 16-bit string containing the SQL statement.
|
sl@0
|
212 |
|
sl@0
|
213 |
@return KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
214 |
KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
|
sl@0
|
215 |
Note that the function may leave with some database specific errors categorised as
|
sl@0
|
216 |
ESqlDbError or other system-wide error codes;
|
sl@0
|
217 |
KErrNone Operation has completed successfully.
|
sl@0
|
218 |
|
sl@0
|
219 |
@see RSqlStatement
|
sl@0
|
220 |
@see RSqlStatement::Prepare()
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
inline TInt CSqlStatementImpl::New(CSqlStatementImpl*& aImpl, CSqlDatabaseImpl& aDatabase, const TDesC16& aSqlStmt)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
return SqlCreateStatement(aImpl, aDatabase, aSqlStmt);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
/**
|
sl@0
|
228 |
Factory function for creating CSqlStatementImpl objects.
|
sl@0
|
229 |
Works with 8-bit SQL statements.
|
sl@0
|
230 |
|
sl@0
|
231 |
Creates CSqlStatementImpl instance and prepares the supplied SQL statement for execution.
|
sl@0
|
232 |
|
sl@0
|
233 |
Note that:
|
sl@0
|
234 |
- CSqlStatementImpl can prepare and execute both parametrized SQL statements and SQL statements
|
sl@0
|
235 |
without parameters;
|
sl@0
|
236 |
- CSqlStatementImpl cannot prepare and execute SQL strings containing more than one SQL statement;
|
sl@0
|
237 |
|
sl@0
|
238 |
@param aImpl A reference to CSqlStatementImpl pointer which will be set to point to the created instance
|
sl@0
|
239 |
@param aDatabase A reference to CSqlDatabaseImpl object.
|
sl@0
|
240 |
@param aSqlStmt 8-bit string containing the SQL statement.
|
sl@0
|
241 |
|
sl@0
|
242 |
@return KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
243 |
KErrArgument, bad argument, for example - the SQL string contains more than one SQL statements.
|
sl@0
|
244 |
Note that the function may leave with some database specific errors categorised as
|
sl@0
|
245 |
ESqlDbError or other system-wide error codes;
|
sl@0
|
246 |
KErrNone Operation has completed successfully.
|
sl@0
|
247 |
|
sl@0
|
248 |
@see RSqlStatement
|
sl@0
|
249 |
@see RSqlStatement::Prepare()
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
inline TInt CSqlStatementImpl::New(CSqlStatementImpl*& aImpl, CSqlDatabaseImpl& aDatabase, const TDesC8& aSqlStmt)
|
sl@0
|
252 |
{
|
sl@0
|
253 |
return SqlCreateStatement(aImpl, aDatabase, aSqlStmt);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
@return Non-zero if CSqlStatementImpl object points at a valid record, zero otherwise.
|
sl@0
|
258 |
|
sl@0
|
259 |
@see RSqlStatement::AtRow()
|
sl@0
|
260 |
*/
|
sl@0
|
261 |
inline TBool CSqlStatementImpl::AtRow() const
|
sl@0
|
262 |
{
|
sl@0
|
263 |
return iState == CSqlStatementImpl::EAtRow;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
/**
|
sl@0
|
267 |
Implements RSqlStatement::ColumnCount().
|
sl@0
|
268 |
|
sl@0
|
269 |
@see RSqlStatement::ColumnCount().
|
sl@0
|
270 |
|
sl@0
|
271 |
@return The column count of the statement
|
sl@0
|
272 |
*/
|
sl@0
|
273 |
inline TInt CSqlStatementImpl::ColumnCount() const
|
sl@0
|
274 |
{
|
sl@0
|
275 |
return iColumnCnt;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
|
sl@0
|
278 |
/**
|
sl@0
|
279 |
Gets the index (starting from 0) of the parameter with the given name.
|
sl@0
|
280 |
|
sl@0
|
281 |
The function does a case insensitive parameter name search.
|
sl@0
|
282 |
|
sl@0
|
283 |
If the parameter name is ":Prm", then the ":" prefix cannot be omitted when you call ParameterIndex().
|
sl@0
|
284 |
|
sl@0
|
285 |
This function can be called at any time after the SQL statement has been prepared.
|
sl@0
|
286 |
|
sl@0
|
287 |
@param aParamName Parameter name
|
sl@0
|
288 |
|
sl@0
|
289 |
@return the parameter index value, if successful - this is a non-negative integer value;
|
sl@0
|
290 |
KErrNotFound, if no such parameter can be found.
|
sl@0
|
291 |
One of the other system-wide error codes may also be returned.
|
sl@0
|
292 |
|
sl@0
|
293 |
@see RSqlStatement::ParamIndex()
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
inline TInt CSqlStatementImpl::ParamIndex(const TDesC& aParamName)
|
sl@0
|
296 |
{
|
sl@0
|
297 |
return Name2Index(aParamName, iParamNameBuf, iParamCnt, ESqlSrvStmtParamNames, iParamNameBufPresent);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
/**
|
sl@0
|
301 |
Gets the index (starting from 0) of the column with the given name.
|
sl@0
|
302 |
|
sl@0
|
303 |
The function does a case insensitive column name search.
|
sl@0
|
304 |
|
sl@0
|
305 |
This function can be called at any time after the SQL statement has been prepared.
|
sl@0
|
306 |
|
sl@0
|
307 |
@param aColumnName Column name
|
sl@0
|
308 |
|
sl@0
|
309 |
@return the column index value, if successful - this is a non-negative integer value;
|
sl@0
|
310 |
KErrNotFound, if no such parameter can be found.
|
sl@0
|
311 |
One of the other system-wide error codes may also be returned.
|
sl@0
|
312 |
|
sl@0
|
313 |
@see RSqlStatement::ColumnIndex()
|
sl@0
|
314 |
*/
|
sl@0
|
315 |
inline TInt CSqlStatementImpl::ColumnIndex(const TDesC& aColumnName)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
return Name2Index(aColumnName, iColumnNameBuf, iColumnCnt, ESqlSrvStmtColumnNames, iColumnNameBufPresent);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
/**
|
sl@0
|
321 |
Gives an access to the content of the requested column as a stream of bytes or characters.
|
sl@0
|
322 |
|
sl@0
|
323 |
The method creates a read-only MStreamBuf derived object which allows the column with aColumnIndex index
|
sl@0
|
324 |
to be accessed as a stream of bytes (if the column is a binary column) or characters
|
sl@0
|
325 |
(if the column is a text column) and returns it to the caller.
|
sl@0
|
326 |
|
sl@0
|
327 |
The caller is responsible for the destroying of the read-only MStreamBuf derived object.
|
sl@0
|
328 |
|
sl@0
|
329 |
ColumnSourceL() can be used only after successful Next() call (Next() returned KSqlAtRow),
|
sl@0
|
330 |
otherwise the method issues panic 11.
|
sl@0
|
331 |
|
sl@0
|
332 |
@param aColumnIndex Column index (starting from 0)
|
sl@0
|
333 |
@return A pointer to the created read-only memory MStreamBuf derived object.
|
sl@0
|
334 |
|
sl@0
|
335 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
336 |
|
sl@0
|
337 |
@panic SqlDb 5 Column index out of bounds.
|
sl@0
|
338 |
@panic SqlDb 7 In _DEBUG mode. aColumnIndex index does not refer to a text or binary column.
|
sl@0
|
339 |
@panic SqlDb 11 Statement object not positioned at row.
|
sl@0
|
340 |
|
sl@0
|
341 |
@see RSqlColumnReadStream
|
sl@0
|
342 |
*/
|
sl@0
|
343 |
inline MStreamBuf* CSqlStatementImpl::ColumnSourceL(TInt aColumnIndex)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
__ASSERT_ALWAYS((TUint)aColumnIndex < (TUint)iColumnCnt, __SQLPANIC(ESqlPanicBadColumnIndex));
|
sl@0
|
346 |
__ASSERT_ALWAYS(iState == CSqlStatementImpl::EAtRow, __SQLPANIC(ESqlPanicInvalidRow));
|
sl@0
|
347 |
iColumnValBufIt.MoveTo(aColumnIndex);
|
sl@0
|
348 |
return iColumnValBufIt.IsPresent() ? iColumnValBufIt.StreamL() : iSqlStmtSession.ColumnSourceL(aColumnIndex);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
/**
|
sl@0
|
352 |
Gives an access to the content of the requested parameter as a stream of bytes or characters.
|
sl@0
|
353 |
|
sl@0
|
354 |
The method creates an IPC object with buffering capabilities, allowing to stream out the data of the
|
sl@0
|
355 |
parameter with aParameterIndex index and returns this MStreamBuf derived object to the caller.
|
sl@0
|
356 |
|
sl@0
|
357 |
The caller is responsible for the destroying of the MStreamBuf derived object.
|
sl@0
|
358 |
|
sl@0
|
359 |
@param aFunction Requested operation
|
sl@0
|
360 |
@param aParamIndex Parameter index (starting from 0)
|
sl@0
|
361 |
|
sl@0
|
362 |
@return A pointer to the created MStreamBuf derived object.
|
sl@0
|
363 |
|
sl@0
|
364 |
@leave KErrNoMemory, an out of memory condition has occurred;
|
sl@0
|
365 |
|
sl@0
|
366 |
@panic SqlDb 5 Parameter index out of bounds.
|
sl@0
|
367 |
|
sl@0
|
368 |
@see RSqlParamWriteStream
|
sl@0
|
369 |
*/
|
sl@0
|
370 |
inline MStreamBuf* CSqlStatementImpl::ParamSinkL(TSqlSrvFunction aFunction, TInt aParamIndex)
|
sl@0
|
371 |
{
|
sl@0
|
372 |
__ASSERT_ALWAYS((TUint)aParamIndex < (TUint)iParamCnt, __SQLPANIC(ESqlPanicBadColumnIndex));
|
sl@0
|
373 |
return iSqlStmtSession.ParamSinkL(aFunction, aParamIndex);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
/**
|
sl@0
|
377 |
Sets the internal state of CSqlStatementImpl instance to CSqlStatementImpl::EUnknown.
|
sl@0
|
378 |
*/
|
sl@0
|
379 |
inline CSqlStatementImpl::CSqlStatementImpl() :
|
sl@0
|
380 |
iBound(ETrue),
|
sl@0
|
381 |
iState(CSqlStatementImpl::EUnknown)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
}
|