os/persistentdata/persistentstorage/dbms/udbms/UD_CURS.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/udbms/UD_CURS.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1210 @@
     1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "UD_STD.H"
    1.20 +
    1.21 +// Class RDbRowSet
    1.22 +
    1.23 +/** Resets the rowset.
    1.24 +
    1.25 +For a Table, this just sets the rowset cursor to the beginning position.
    1.26 +
    1.27 +For an SQL view, this discards any evaluated rows and returns the cursor to 
    1.28 +the beginning. The view then requires reevaluation.
    1.29 +
    1.30 +The Store Database implementation requires this function to be called in order 
    1.31 +to recover an open rowset object after the database has been rolled back. 
    1.32 +The rowset does not need to be closed in this situation.
    1.33 +
    1.34 +If a rowset object requires a reset, then all row functions return or leave 
    1.35 +with KErrNotReady. */
    1.36 +EXPORT_C void RDbRowSet::Reset()
    1.37 +	{
    1.38 +	iCursor->Reset();
    1.39 +	}
    1.40 +
    1.41 +/** Closes the rowset and releases any owned resources. It is safe to close a rowset 
    1.42 +object which is not open. */
    1.43 +EXPORT_C void RDbRowSet::Close()
    1.44 +	{
    1.45 +	iCursor.Close();
    1.46 +	}
    1.47 +
    1.48 +/** Returns the number of rows available in a rowset.
    1.49 +	
    1.50 +This can take some time to complete, and a parameter can be passed to request 
    1.51 +a quick but not always thorough count of the rows.
    1.52 +
    1.53 +For SQL views, the value returned depends on the evaluation window being used 
    1.54 +by the view. If there is an evaluation window this function will always return 
    1.55 +the number of rows available in the window, not the total number which could 
    1.56 +be returned by the query.
    1.57 +
    1.58 +@param anAccuracy This specifies whether to ensure that an accurate count 
    1.59 +is returned, or to give up if this value is not readily available. The default 
    1.60 +is to ensure an accurate count.
    1.61 +@return The number of rows available in the rowset, or KDbUndefinedCount if 
    1.62 +EQuick was specified and the count was not available. 
    1.63 +
    1.64 +@capability Note For a secure shared database, the caller must satisfy either the read
    1.65 +            or the write access policy for the table.
    1.66 +*/
    1.67 +EXPORT_C TInt RDbRowSet::CountL(TAccuracy aAccuracy) const
    1.68 +	{
    1.69 +	return iCursor->CountL(aAccuracy);
    1.70 +	}
    1.71 +
    1.72 +/** Tests whether there are any rows in the rowset. This is often faster than testing 
    1.73 +whether CountL()==0.
    1.74 +
    1.75 +@return ETrue if there are no rows available in the rowset, EFalse if there 
    1.76 +are one or more. 
    1.77 +
    1.78 +@capability Note For a secure shared database, the caller must satisfy the read
    1.79 +            access policy for the table.
    1.80 +*/
    1.81 +EXPORT_C TBool RDbRowSet::IsEmptyL() const
    1.82 +	{
    1.83 +	if (AtRow())
    1.84 +		return EFalse;
    1.85 +	TInt count=CountL(EQuick);
    1.86 +	if (count!=KDbUndefinedCount)
    1.87 +		return count==0;
    1.88 +	TDbBookmark mark=Bookmark();
    1.89 +	CDbCursor& cursor=*iCursor;
    1.90 +	TBool hasRow=cursor.GotoL(EFirst);
    1.91 +	cursor.GotoL(mark.iMark);
    1.92 +	return !hasRow;
    1.93 +	}
    1.94 +
    1.95 +/** Returns the entire column set for the rowset. This can be used to discover 
    1.96 +column ordinals for named columns in this rowset.
    1.97 +
    1.98 +The function leaves with KErrNoMemory if there is not enough memory to carry 
    1.99 +out the operation. 
   1.100 +
   1.101 +@return The column set object which describes this rowset structure. The caller 
   1.102 +should delete it when it is no longer required. */
   1.103 +EXPORT_C CDbColSet* RDbRowSet::ColSetL() const
   1.104 +	{
   1.105 +	CDbColSet* cs=CDbColSet::NewLC();
   1.106 +	iCursor->ColumnsL(*cs);
   1.107 +	CleanupStack::Pop();
   1.108 +	return cs;
   1.109 +	}
   1.110 +
   1.111 +/** Returns the number of columns which are defined in this rowset.
   1.112 +
   1.113 +@return The number of columns which are defined in this rowset. */
   1.114 +EXPORT_C TInt RDbRowSet::ColCount() const
   1.115 +	{
   1.116 +	return iCursor->ColumnCount();
   1.117 +	}
   1.118 +
   1.119 +/** Returns the type of a column in the rowset.
   1.120 +	
   1.121 +@param aCol The column ordinal for which the column type is required. Column 
   1.122 +ordinals range from 1 to ColCount().
   1.123 +@return The type of the column aCol. */
   1.124 +EXPORT_C TDbColType RDbRowSet::ColType(TDbColNo aColNo) const
   1.125 +	{
   1.126 +	return iCursor->ColumnType(aColNo);
   1.127 +	}
   1.128 +
   1.129 +/** Returns the definition of a column in the rowset.
   1.130 +	
   1.131 +@param aCol The column ordinal for which the column definition is required. 
   1.132 +Column ordinals range from 1 to ColCount().
   1.133 +@return The definition of the column aCol. */
   1.134 +EXPORT_C TDbCol RDbRowSet::ColDef(TDbColNo aColNo) const
   1.135 +	{
   1.136 +	TDbCol col;
   1.137 +	iCursor->ColumnDef(col,aColNo);
   1.138 +	return col;
   1.139 +	}
   1.140 +
   1.141 +/** Tests whether the cursor is on a row.
   1.142 +
   1.143 +One of the following is true:
   1.144 +
   1.145 +the rowset is currently updating a row
   1.146 +
   1.147 +the rowset is currently inserting a row
   1.148 +
   1.149 +GetL() can be called to retrieve the row
   1.150 +
   1.151 +@return ETrue if the cursor is on a valid row; EFalse, otherwise. */
   1.152 +EXPORT_C TBool RDbRowSet::AtRow() const
   1.153 +	{
   1.154 +	return iCursor->AtRow();
   1.155 +	}
   1.156 +
   1.157 +/** Tests whether the cursor is at the beginning of the rowset.
   1.158 +
   1.159 +@return ETrue if the cursor is at the beginning, otherwise EFalse. */
   1.160 +EXPORT_C TBool RDbRowSet::AtBeginning() const
   1.161 +	{
   1.162 +	return iCursor->AtBeginning();
   1.163 +	}
   1.164 +
   1.165 +/** Tests whether the cursor is at the end of the rowset.
   1.166 +
   1.167 +@return ETrue if the cursor is at the end, otherwise EFalse. */
   1.168 +EXPORT_C TBool RDbRowSet::AtEnd() const
   1.169 +	{
   1.170 +	return iCursor->AtEnd();
   1.171 +	}
   1.172 +
   1.173 +/** Moves the cursor to a specified position.
   1.174 +
   1.175 +This is invoked by Beginning(), End(), FirstL(), LastL(), NextL() and PreviousL() 
   1.176 +to navigate the cursor. See those functions for descriptions of how the cursor 
   1.177 +behaves given different position specifications.
   1.178 +
   1.179 +@param aPosition Specifies the position to move the cursor to.
   1.180 +@return ETrue if the cursor is now at a row, EFalse if it is at the beginning 
   1.181 +or end. 
   1.182 +
   1.183 +@capability Note For a secure shared database, the caller must satisfy the read
   1.184 +            access policy for the table.
   1.185 +*/
   1.186 +EXPORT_C TBool RDbRowSet::GotoL(TPosition aPosition)
   1.187 +	{
   1.188 +	return iCursor->GotoL(aPosition);
   1.189 +	}
   1.190 +
   1.191 +/** Gets the bookmark for the current cursor position. Bookmarks cannot be extracted 
   1.192 +when the rowset is updating or inserting a row.
   1.193 +
   1.194 +The Store Database implementation allows bookmarks to be extracted for any 
   1.195 +cursor position including the beginning and end.
   1.196 +
   1.197 +@return A bookmark which can be used to return to the current position using 
   1.198 +the GotoL() function. 
   1.199 +
   1.200 +@capability Note For a secure shared database, the caller must satisfy the read
   1.201 +            access policy for the table.
   1.202 +*/
   1.203 +EXPORT_C TDbBookmark RDbRowSet::Bookmark() const
   1.204 +	{
   1.205 +	TDbBookmark mark;
   1.206 +	iCursor->Bookmark(mark.iMark);
   1.207 +	return mark;
   1.208 +	}
   1.209 +
   1.210 +/** Goes to a previously bookmarked position in a rowset.
   1.211 +
   1.212 +The Store Database implements bookmarks which are valid in any rowset based 
   1.213 +on the same table or generated by the same query, and which persist across 
   1.214 +transaction boundaries.
   1.215 +
   1.216 +@param aMark The bookmark to return to. This should have been returned by 
   1.217 +a previous call to Bookmark() on this or an equivalent rowset object. 
   1.218 +
   1.219 +@capability Note For a secure shared database, the caller must satisfy the read
   1.220 +            access policy for the table.
   1.221 +*/
   1.222 +EXPORT_C void RDbRowSet::GotoL(const TDbBookmark& aMark)
   1.223 +	{
   1.224 +	iCursor->GotoL(aMark.iMark);
   1.225 +	}
   1.226 +
   1.227 +/** Gets the current row data for access using the column extractor functions. 
   1.228 +The cursor must be positioned at a valid row. 
   1.229 +
   1.230 +@capability Note For a secure shared database, the caller must satisfy the read
   1.231 +            access policy for the table.
   1.232 +*/
   1.233 +EXPORT_C void RDbRowSet::GetL()
   1.234 +	{
   1.235 +	iCursor->GetL();
   1.236 +	}
   1.237 +
   1.238 +/** Inserts a new row into the rowset. All auto-increment columns will be initialised 
   1.239 +with their new values, all other columns will be initialised to NULL values. 
   1.240 +If no client-begun transaction is in progress, this function begins an automatic 
   1.241 +transaction, which is committed by PutL().
   1.242 +
   1.243 +After the column values have been set using the SetColL() functions, the row 
   1.244 +can be written to the database using PutL(). 
   1.245 +
   1.246 +@capability Note For a secure shared database, the caller must satisfy the write
   1.247 +            access policy for the table.
   1.248 +*/
   1.249 +EXPORT_C void RDbRowSet::InsertL()
   1.250 +	{
   1.251 +	iCursor->InsertL(CDbCursor::EClear);
   1.252 +	}
   1.253 +
   1.254 +/** Inserts a copy of the current row into the rowset. All auto-increment columns 
   1.255 +will be given a new value (as for InsertL()), the other columns will copy 
   1.256 +their values from the cursor's current row. If no client-begun transaction 
   1.257 +is in progress, this function begins an automatic transaction, which is committed 
   1.258 +by PutL().
   1.259 +
   1.260 +After the column values have been modified using the SetColL() functions, 
   1.261 +the row can be written to the database using PutL(). 
   1.262 +
   1.263 +@capability Note For a secure shared database, the caller must satisfy the write
   1.264 +            access policy for the table.
   1.265 +*/
   1.266 +EXPORT_C void RDbRowSet::InsertCopyL()
   1.267 +	{
   1.268 +	iCursor->InsertL(CDbCursor::ECopy);
   1.269 +	}
   1.270 +
   1.271 +/** Prepares the current row for update. If no client-begun transaction is in progress, 
   1.272 +this function begins an automatic transaction, which is committed by PutL().
   1.273 +
   1.274 +After the column values have been modified using the SetColL() functions, 
   1.275 +the row can be written back to the database using PutL(). 
   1.276 +
   1.277 +@capability Note For a secure shared database, the caller must satisfy the write
   1.278 +            access policy for the table.
   1.279 +*/
   1.280 +EXPORT_C void RDbRowSet::UpdateL()
   1.281 +	{
   1.282 +	iCursor->UpdateL();
   1.283 +	}
   1.284 +
   1.285 +/** Completes the update or insertion of a row.
   1.286 +
   1.287 +First the new row data is validated:
   1.288 +
   1.289 +not-null columns are checked to be not NULL
   1.290 +
   1.291 +numerical columns are checked to be in range for their type
   1.292 +
   1.293 +variable length columns are checked to not exceed their maximum length
   1.294 +
   1.295 +unique index keys are checked to ensure uniqueness is not violated
   1.296 +
   1.297 +Note that modifying auto-increment columns is not prevented by DBMS.
   1.298 +
   1.299 +Following validation the data is written to the database and any affected 
   1.300 +indexes are updated. On successful completion of the write, PutL() will then 
   1.301 +commit any automatic transaction.
   1.302 +
   1.303 +The cursor is left positioned on the updated or inserted row — where this 
   1.304 +lies in the rowset is not always well defined. To return to the row which 
   1.305 +was current prior to the update or insertion, a bookmark can be used.
   1.306 +
   1.307 +In the Store Database implementation the written row is located in the rowset 
   1.308 +as follows:
   1.309 +
   1.310 +Tables without an active index will leave updated rows in the same location 
   1.311 +and append new rows to the end of the rowset.
   1.312 +
   1.313 +Tables with an active index place the row according to the active index ordering.
   1.314 +
   1.315 +SQL views without an evaluation window will place it according to the rowset 
   1.316 +ordering. The row may subsequently disappear if it does not match the WHERE 
   1.317 +clause of the SQL query.
   1.318 +
   1.319 +SQL views with a full evaluation window will leave updated rows in the same 
   1.320 +location and append new rows to the end of the rowset. Re-evaluation may cause 
   1.321 +the row to disappear if it does not match the WHERE clause of the SQL query.
   1.322 +
   1.323 +SQL views with a partial evaluation window will leave updated rows in the 
   1.324 +same location, new rows are not added to the window and navigation from the 
   1.325 +new row is undefined. Further navigation and evaluation of the partial window 
   1.326 +will place the rows in the correct location according to the query. 
   1.327 +
   1.328 +@capability Note For a secure shared database, the caller must satisfy the write
   1.329 +            access policy for the table.
   1.330 +*/
   1.331 +EXPORT_C void RDbRowSet::PutL()
   1.332 +	{
   1.333 +	iCursor->PutL();
   1.334 +	}
   1.335 +
   1.336 +/** Deletes the current row in a rowset. The rowset must not currently be updating 
   1.337 +or inserting the row.
   1.338 +
   1.339 +The rowset cursor is left positioned at the "hole" left by the deletion of 
   1.340 +the current row. Navigation to the next or previous row will have the same 
   1.341 +effect as if this row had not been deleted. Once the cursor has been moved 
   1.342 +from the "hole" it will disappear from the rowset.
   1.343 +
   1.344 +If the client has not begun a transaction, this function will use an automatic 
   1.345 +transaction to update the rowset. 
   1.346 +
   1.347 +@capability Note For a secure shared database, the caller must satisfy the write
   1.348 +            access policy for the table.
   1.349 +*/
   1.350 +EXPORT_C void RDbRowSet::DeleteL()
   1.351 +	{
   1.352 +	iCursor->DeleteL();
   1.353 +	}
   1.354 +
   1.355 +/** Cancels the update or insertion of a row, or recovers the rowset if PutL() 
   1.356 +fails. The cursor will return to the location prior to starting the update 
   1.357 +or insertion. It is also safe to call this function when the rowset object 
   1.358 +is not updating or inserting a row, in which case it does nothing.
   1.359 +
   1.360 +In the Store database implementation, if this is called to abort a row update 
   1.361 +or insertion before PutL() is called or during row validation in PutL(), all 
   1.362 +the changes are discarded without requiring a transaction rollback and the 
   1.363 +rowset to be Reset(). */
   1.364 +EXPORT_C void RDbRowSet::Cancel()
   1.365 +	{
   1.366 +	iCursor->Cancel();
   1.367 +	}
   1.368 +
   1.369 +//
   1.370 +// Checks for valid Cursor and column ID
   1.371 +//
   1.372 +CDbCursor& RDbRowSet::CheckCol(TDbColNo aCol) const
   1.373 +	{
   1.374 +	CDbCursor& cr=*iCursor;
   1.375 +	__ASSERT_ALWAYS(aCol>0&&aCol<=cr.ColumnCount(),Panic(EDbInvalidColumn));
   1.376 +	return cr;
   1.377 +	}
   1.378 +
   1.379 +//
   1.380 +// Checks for valid Cursor, column ID and type
   1.381 +//
   1.382 +TDbColumnC RDbRowSet::ColumnC(TDbColNo aCol,TDbColType aType) const
   1.383 +	{
   1.384 +	CDbCursor& cr=*iCursor;
   1.385 +	TDbColType cType=cr.ColumnType(aCol);
   1.386 +	if (cType!=aType)
   1.387 +		{	// not an exact match
   1.388 +		if (cType>aType)
   1.389 +			Panic(EDbWrongType);		// extraction type is narrower
   1.390 +		else if (!IsIntegral(cType))
   1.391 +			Panic(EDbWrongType);		// type is non-integral
   1.392 +		else if (IsSigned(cType) && IsUnsigned(aType))
   1.393 +			Panic(EDbWrongType);		// cannot get signed column as unsigned
   1.394 +		}
   1.395 +	return cr.ColumnC(aCol);
   1.396 +	}
   1.397 +
   1.398 +TDbColumn RDbRowSet::Column(TDbColNo aCol,TDbColType aType)
   1.399 +	{
   1.400 +	CDbCursor& cr=*iCursor;
   1.401 +	__ASSERT_ALWAYS(cr.ColumnType(aCol)==aType,Panic(EDbWrongType));
   1.402 +	return cr.Column(aCol);
   1.403 +	}
   1.404 +
   1.405 +/** Gets the size in bytes of a column value. This can be used for all column types, 
   1.406 +including Long columns. NULL columns return a size of 0.
   1.407 +
   1.408 +Note:
   1.409 +
   1.410 +This may yield unexpected results for small numerical column types as they 
   1.411 +are stored in memory as 32-bit values.
   1.412 +
   1.413 +@param aCol The column ordinal of the column to check.
   1.414 +@return The length in bytes of column aCol's value. */
   1.415 +EXPORT_C TInt RDbRowSet::ColSize(TDbColNo aCol) const
   1.416 +	{
   1.417 +	return iCursor->ColumnSize(aCol);
   1.418 +	}
   1.419 +
   1.420 +/** Gets the length of a column value. As compared with ColSize(), this returns 
   1.421 +the number of "units" in the column:
   1.422 +
   1.423 +NULL columns have a length of 0
   1.424 +
   1.425 +non-NULL numerical and date-time columns have a length of 1
   1.426 +
   1.427 +for Text columns the length is the character count
   1.428 +
   1.429 +for Binary columns the length is the byte count
   1.430 +
   1.431 +@param aCol The column ordinal of the column to check.
   1.432 +@return The length in "units" of column aCol's value. */
   1.433 +EXPORT_C TInt RDbRowSet::ColLength(TDbColNo aCol) const
   1.434 +	{
   1.435 +	TInt size=ColSize(aCol);
   1.436 +	switch (iCursor()->ColumnType(aCol))
   1.437 +		{
   1.438 +	case EDbColText8:
   1.439 +	case EDbColLongText8:
   1.440 +	case EDbColBinary:
   1.441 +	case EDbColLongBinary:
   1.442 +		break;
   1.443 +	case EDbColText16:
   1.444 +	case EDbColLongText16:
   1.445 +		if (size>0)
   1.446 +			size>>=1;
   1.447 +		break;
   1.448 +	default:
   1.449 +		if (size)
   1.450 +			size=1;
   1.451 +		break;
   1.452 +		}
   1.453 +	return size;
   1.454 +	}
   1.455 +
   1.456 +/** Extracts a TInt8 column value.
   1.457 +
   1.458 +@param aCol The column ordinal of the column to extract.
   1.459 +@return The value of column aCol. */
   1.460 +EXPORT_C TInt8 RDbRowSet::ColInt8(TDbColNo aCol) const
   1.461 +	{
   1.462 +	return ColumnC(aCol,EDbColInt8).Int8();
   1.463 +	} 
   1.464 +
   1.465 +/** Extracts a TInt16 or TInt8 column value.
   1.466 +
   1.467 +@param aCol The column ordinal of the column to extract.
   1.468 +@return The value of column aCol. */
   1.469 +EXPORT_C TInt16 RDbRowSet::ColInt16(TDbColNo aCol) const
   1.470 +	{
   1.471 +	return ColumnC(aCol,EDbColInt16).Int16();
   1.472 +	} 
   1.473 +
   1.474 +/** Extracts a TInt32, TInt16 or TInt8 column value.
   1.475 +
   1.476 +@param aCol The column ordinal of the column to extract.
   1.477 +@return The value of column aCol. */
   1.478 +EXPORT_C TInt32 RDbRowSet::ColInt32(TDbColNo aCol) const
   1.479 +	{
   1.480 +	return ColumnC(aCol,EDbColInt32).Int32();
   1.481 +	} 
   1.482 +
   1.483 +/** Extracts a TInt64 column value.
   1.484 +
   1.485 +@param aCol The column ordinal of the column to extract.
   1.486 +@return The value of column aCol. */
   1.487 +EXPORT_C TInt64 RDbRowSet::ColInt64(TDbColNo aCol) const
   1.488 +	{
   1.489 +	CDbCursor& cr=*iCursor;
   1.490 +	TDbColumnC c=cr.ColumnC(aCol);
   1.491 +	TDbColType t=cr.ColumnType(aCol);
   1.492 +	if (t==EDbColInt64)
   1.493 +		return c.Int64();
   1.494 +	if (t>EDbColInt64)
   1.495 +		Panic(EDbWrongType);
   1.496 +	if (IsSigned(t))
   1.497 +		return TInt(c.Int32());
   1.498 +	return TUint(c.Uint32());
   1.499 +	} 
   1.500 +
   1.501 +/** Extracts a Uint8 or Bit column value.
   1.502 +
   1.503 +@param aCol The column ordinal of the column to extract.
   1.504 +@return The value of column aCol. */
   1.505 +EXPORT_C TUint8 RDbRowSet::ColUint8(TDbColNo aCol) const
   1.506 +	{
   1.507 +	return ColumnC(aCol,EDbColUint8).Uint8();
   1.508 +	} 
   1.509 +
   1.510 +/** Extracts a Uint16, Uint8 or Bit column value.
   1.511 +
   1.512 +@param aCol The column ordinal of the column to extract.
   1.513 +@return The value of column aCol. */
   1.514 +EXPORT_C TUint16 RDbRowSet::ColUint16(TDbColNo aCol) const
   1.515 +	{
   1.516 +	return ColumnC(aCol,EDbColUint16).Uint16();
   1.517 +	} 
   1.518 +
   1.519 +/** Extracts a Uint32, Uint16, Uint8 or Bit column value.
   1.520 +
   1.521 +@param aCol The column ordinal of the column to extract.
   1.522 +@return The value of column aCol. */
   1.523 +EXPORT_C TUint32 RDbRowSet::ColUint32(TDbColNo aCol) const
   1.524 +	{
   1.525 +	return ColumnC(aCol,EDbColUint32).Uint32();
   1.526 +	} 
   1.527 +
   1.528 +/** Extracts a TReal32 column value.
   1.529 +
   1.530 +@param aCol The column ordinal of the column to extract.
   1.531 +@return The value of column aCol. */
   1.532 +EXPORT_C TReal32 RDbRowSet::ColReal32(TDbColNo aCol) const __SOFTFP
   1.533 +	{
   1.534 +	return ColumnC(aCol,EDbColReal32).Real32();
   1.535 +	} 
   1.536 +
   1.537 +/** Extracts a TReal64 column value.
   1.538 +
   1.539 +@param aCol The column ordinal of the column to extract.
   1.540 +@return The value of column aCol. */
   1.541 +EXPORT_C TReal64 RDbRowSet::ColReal64(TDbColNo aCol) const __SOFTFP
   1.542 +	{
   1.543 +	return ColumnC(aCol,EDbColReal64).Real64();
   1.544 +	} 
   1.545 +
   1.546 +/** Extracts a TTime column value.
   1.547 +
   1.548 +@param aCol The column ordinal of the column to extract.
   1.549 +@return The value of column aCol. TTime may be either local time or universal time. 
   1.550 +DBMS doesn't interpret the value of TTime, it is left up to the user to know which has been used.*/
   1.551 +EXPORT_C TTime RDbRowSet::ColTime(TDbColNo aCol) const
   1.552 +	{
   1.553 +	return ColumnC(aCol,EDbColDateTime).Time();
   1.554 +	} 
   1.555 +
   1.556 +/** Extracts any column type, except Long columns, as binary data.
   1.557 +Can handle any type of non-long column
   1.558 +
   1.559 +@param aCol The column ordinal of the column to extract.
   1.560 +@return A descriptor of column aCol's value. */
   1.561 +EXPORT_C TPtrC8 RDbRowSet::ColDes8(TDbColNo aCol) const
   1.562 +	{
   1.563 +	CDbCursor& cr=*iCursor;
   1.564 +	__ASSERT_ALWAYS(!IsLong(cr.ColumnType(aCol)),Panic(EDbWrongType));
   1.565 +	return cr.ColumnC(aCol).PtrC8();
   1.566 +	} 
   1.567 +
   1.568 +/** Extracts a column as Unicode text.
   1.569 +
   1.570 +@param aCol The column ordinal of the column to extract
   1.571 +@return A descriptor of column aCol's value. */
   1.572 +EXPORT_C TPtrC16 RDbRowSet::ColDes16(TDbColNo aCol) const
   1.573 +	{
   1.574 +	return ColumnC(aCol,EDbColText16).PtrC16();
   1.575 +	}
   1.576 +
   1.577 +/** Extracts a Text column value. The column type must match the default descriptor 
   1.578 +type to use this extractor, ie. it must be equal to EDbColText.
   1.579 +
   1.580 +@param aCol The column ordinal of the column to extract.
   1.581 +@return A descriptor of column aCol's value. */
   1.582 +EXPORT_C TPtrC RDbRowSet::ColDes(TDbColNo aCol) const
   1.583 +	{
   1.584 +	return ColDes16(aCol);
   1.585 +	}
   1.586 +
   1.587 +/** Use this function to set the value of a column to NULL.
   1.588 +
   1.589 +@param aCol The column ordinal of the column to set to NULL. 
   1.590 +
   1.591 +@capability Note For a secure shared database, the caller must satisfy the write
   1.592 +            access policy for the table.
   1.593 +*/
   1.594 +EXPORT_C void RDbRowSet::SetColNullL(TDbColNo aCol)
   1.595 +	{
   1.596 +	iCursor->SetNullL(aCol);
   1.597 +	}
   1.598 +
   1.599 +/** Sets a TInt32, TInt16 or TInt8 column value.
   1.600 +
   1.601 +@param aCol The column ordinal of the column to set.
   1.602 +@param aValue The new column value. */
   1.603 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt32 aValue)
   1.604 +	{
   1.605 +	CDbCursor& cr=*iCursor;
   1.606 +	TDbColType t=cr.ColumnType(aCol);
   1.607 +	if (t<EDbColInt64)
   1.608 +		{	// set any <= 32-bit integral type
   1.609 +		if (IsSigned(t))
   1.610 +			{
   1.611 +			cr.Column(aCol).SetL(aValue);
   1.612 +			return;
   1.613 +			}
   1.614 +		if (aValue>=0)
   1.615 +			{	// check the domain for unsigned columns
   1.616 +			cr.Column(aCol).SetL(aValue);
   1.617 +			return;
   1.618 +			}
   1.619 +		}
   1.620 +	Panic(EDbWrongType);
   1.621 +	}
   1.622 +
   1.623 +/** Sets a TInt64 column value.
   1.624 +
   1.625 +@param aCol The column ordinal of the column to set.
   1.626 +@param aValue The new column value. */
   1.627 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt64 aValue)
   1.628 +	{
   1.629 +	CDbCursor& cr=*iCursor;
   1.630 +	TDbColumn c=cr.Column(aCol);
   1.631 +	TDbColType t=cr.ColumnType(aCol);
   1.632 +	if (t==EDbColInt64)
   1.633 +		{		// exact match
   1.634 +		c.SetL(aValue);
   1.635 +		return;
   1.636 +		}
   1.637 +	if (t<EDbColInt64)
   1.638 +		{
   1.639 +		TInt32 l = I64LOW(aValue);
   1.640 +		TInt32 h = I64HIGH(aValue);
   1.641 +		if (IsSigned(t))
   1.642 +			{	// check the domain for signed 32-bit 
   1.643 +			if (h==l>>31)		// sign-extend l gives aValue
   1.644 +				{
   1.645 +				c.SetL(l);
   1.646 +				return;
   1.647 +				}
   1.648 +			}	// invalid type, drop through to panic
   1.649 +		else
   1.650 +			{	// check the domain for unsigned 32-bit 
   1.651 +			if (h==0)
   1.652 +				{				// zero extend l gives aValue
   1.653 +				c.SetL(l);	// in unsigned 32 bit range
   1.654 +				return;
   1.655 +				}
   1.656 +			}	// invalid type, drop through to panic
   1.657 +		}
   1.658 +	Panic(EDbWrongType);
   1.659 +	}
   1.660 +
   1.661 +/** Sets a TUint32, TUint16, TUint8 or Bit column value.
   1.662 +
   1.663 +@param aCol The column ordinal of the column to set.
   1.664 +@param aValue The new column value. */
   1.665 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TUint32 aValue)
   1.666 +	{
   1.667 +	CDbCursor& cr=*iCursor;
   1.668 +	TDbColType t=cr.ColumnType(aCol);
   1.669 +	if (t<EDbColInt64)
   1.670 +		{	// set any <= 32-bit integral type
   1.671 +		if (IsUnsigned(t))
   1.672 +			{
   1.673 +			cr.Column(aCol).SetL(aValue);
   1.674 +			return;
   1.675 +			}
   1.676 +		if (aValue<=TUint32(KMaxTInt))
   1.677 +			{	// check the domain for signed columns
   1.678 +			cr.Column(aCol).SetL(aValue);
   1.679 +			return;
   1.680 +			}
   1.681 +		}
   1.682 +	Panic(EDbWrongType);
   1.683 +	}
   1.684 +
   1.685 +/** Sets a TReal32 column value.
   1.686 +
   1.687 +@param aCol The column ordinal of the column to set.
   1.688 +@param aValue The new column value. */
   1.689 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP
   1.690 +	{
   1.691 +	Column(aCol,EDbColReal32).SetL(aValue);
   1.692 +	}
   1.693 +
   1.694 +/** Sets a TReal64 column value.
   1.695 +
   1.696 +@param aCol The column ordinal of the column to set.
   1.697 +@param aValue The new column value. */
   1.698 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP
   1.699 +	{
   1.700 +	Column(aCol,EDbColReal64).SetL(aValue);
   1.701 +	}
   1.702 +
   1.703 +/** Sets a TTime column value.
   1.704 +
   1.705 +TTime could be either local time or universal time. 
   1.706 +DBMS doesn't interpret the value of TTime, it is left up to the user to decide which should be used.
   1.707 +
   1.708 +@param aCol The column ordinal of the column to set.
   1.709 +@param aValue The new column value. */
   1.710 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TTime aValue)
   1.711 +	{
   1.712 +	Column(aCol,EDbColDateTime).SetL(aValue);
   1.713 +	}
   1.714 +
   1.715 +/** Sets a column value from an 8 bit descriptor. This function can also set the 
   1.716 +value of Long columns.
   1.717 +
   1.718 +Usually this is used to set a Text8 or LongText8 column from a non-Unicode 
   1.719 +text descriptor, but can be used for any column type: the data content is 
   1.720 +validated when the row is PutL().
   1.721 +
   1.722 +@param aCol The column ordinal of the column to set.
   1.723 +@param aValue The new column value. */
   1.724 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC8 &aValue)
   1.725 +	{
   1.726 +	CDbCursor& c=*iCursor;
   1.727 +	if (IsLong(c.ColumnType(aCol)))
   1.728 +		{
   1.729 +		RDbColWriteStream strm;
   1.730 +		strm.OpenLC(*this,aCol);
   1.731 +		strm.WriteL(aValue);
   1.732 +		strm.CommitL();
   1.733 +		CleanupStack::PopAndDestroy();
   1.734 +		}
   1.735 +	else
   1.736 +		c.Column(aCol).SetL(aValue);
   1.737 +	}
   1.738 +
   1.739 +/** Set a column value from Unicode text.
   1.740 +
   1.741 +@param aCol The column ordinal of the column to set.
   1.742 +@param aValue The new column value. */
   1.743 +EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC16 &aValue)
   1.744 +	{
   1.745 +	CDbCursor& c=*iCursor;
   1.746 +	if (c.ColumnType(aCol)==EDbColLongText16)
   1.747 +		{
   1.748 +		RDbColWriteStream strm;
   1.749 +		strm.OpenLC(*this,aCol);
   1.750 +		strm.WriteL(aValue);
   1.751 +		strm.CommitL();
   1.752 +		CleanupStack::PopAndDestroy();
   1.753 +		}
   1.754 +	else
   1.755 +		Column(aCol,EDbColText16).SetL(aValue);
   1.756 +	}
   1.757 +
   1.758 +/** Searches through a rowset for a row which fulfils an SQL search-condition. 
   1.759 +The search begins from the current position (which must be a valid row) and 
   1.760 +proceeds forwards or backwards through the available rows until it finds a 
   1.761 +match or runs out of rows.
   1.762 +
   1.763 +The cursor is positioned to the matching row (or beginning/end of set) on 
   1.764 +return.
   1.765 +
   1.766 +This is a brute-force approach to finding a row using an index for key-based 
   1.767 +retrieval on a Table rowset is a much faster but less flexible way of finding 
   1.768 +rows.
   1.769 +
   1.770 +@param aDirection Specifies which direction to search after testing the current 
   1.771 +row.
   1.772 +@param aCriteria A query object containing an SQL search-condition to match 
   1.773 +against.
   1.774 +@return If no match is found KErrNotFound is returned. Otherwise the number 
   1.775 +of rows navigated while finding a match, which may be 0 if the current row 
   1.776 +matches. 
   1.777 +
   1.778 +@capability Note For a secure shared database, the caller must satisfy the read
   1.779 +            access policy for the table.
   1.780 +*/
   1.781 +EXPORT_C TInt RDbRowSet::FindL(TDirection aDirection,TDbQuery aCriteria)
   1.782 +	{
   1.783 +	return iCursor->FindL(aDirection,aCriteria);
   1.784 +	}
   1.785 +
   1.786 +/** Tests whether the current row in the rowset matches a previously compiled row 
   1.787 +constraint. The rowset must not currently be updating or inserting a row.
   1.788 +
   1.789 +@param aConstraint A row constraint object which must have been previously 
   1.790 +opened on this rowset object.
   1.791 +@return ETrue if the current row fulfils the constraint, otherwise EFalse. 
   1.792 +
   1.793 +@capability Note For a secure shared database, the caller must satisfy the read
   1.794 +            access policy for the table.
   1.795 +*/
   1.796 +EXPORT_C TBool RDbRowSet::MatchL(const RDbRowConstraint& aConstraint)
   1.797 +	{
   1.798 +	return iCursor->MatchL(*aConstraint.iConstraint);
   1.799 +	}
   1.800 +
   1.801 +// Class RDbRowConstraint
   1.802 +
   1.803 +/** Compiles the specified SQL search-condition for matching against rows in the 
   1.804 +specified rowset. The text comparison supplied in aCriteria is used for all 
   1.805 +text columns in the constraint.
   1.806 +
   1.807 +@param aView The rowset to which the constraint will apply.
   1.808 +@param aCriteria The SQL string and the text comparison mode for the constraint.
   1.809 +@return KErrNone, if successful, otherwise one of the system-wide error codes. 
   1.810 +Specifically:KErrNotFound if a column name in the SQL query does not exist.KErrArgument 
   1.811 +if Invalid or unrecognised SQL syntax was used.KErrGeneral for a column type 
   1.812 +mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
   1.813 +was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
   1.814 +column was too large (did not fit in a 32-bit integral representation). This 
   1.815 +can also be one of the DBMS database error codes. 
   1.816 +
   1.817 +@capability Note For a secure shared database, the caller must satisfy the read
   1.818 +            access policy for the table.
   1.819 +*/
   1.820 +EXPORT_C TInt RDbRowConstraint::Open(const RDbRowSet& aView,TDbQuery aCriteria)
   1.821 +	{
   1.822 +	TRAPD(r,iConstraint=aView.iCursor->ConstraintL(aCriteria));
   1.823 +	return r;
   1.824 +	}
   1.825 +
   1.826 +/** Releases the resources used by the constraint before discarding the constraint 
   1.827 +object. */
   1.828 +EXPORT_C void RDbRowConstraint::Close()
   1.829 +	{
   1.830 +	iConstraint.Close();
   1.831 +	}
   1.832 +
   1.833 +// Class RDbColReadStream
   1.834 +
   1.835 +/** Opens the column with the specified ordinal in the specified current row in 
   1.836 +the rowset. The row must have previously been read into the rowset using RDbRowSet::GetL().
   1.837 +
   1.838 +@param aView The rowset which has the row and column to be read.
   1.839 +@param aCol The column ordinal of the column to be read 
   1.840 +
   1.841 +@capability Note For a secure shared database, the caller must satisfy the read
   1.842 +            access policy for the table.
   1.843 +*/
   1.844 +EXPORT_C void RDbColReadStream::OpenL(const RDbRowSet& aView,TDbColNo aCol)
   1.845 +	{
   1.846 +	Attach(aView.ColSourceL(aCol));
   1.847 +	}
   1.848 +
   1.849 +/** Opens the column with the specified ordinal in the specified current row in 
   1.850 +the rowset and puts a pointer to the column on the cleanup stack.
   1.851 +
   1.852 +The row must have previously been read into the rowset using RDbRowSet::GetL().
   1.853 +
   1.854 +@param aView The rowset which has the row and column to be read.
   1.855 +@param aCol The column ordinal of the column to be read. 
   1.856 +
   1.857 +@capability Note For a secure shared database, the caller must satisfy the read
   1.858 +            access policy for the table.
   1.859 +*/
   1.860 +EXPORT_C void RDbColReadStream::OpenLC(const RDbRowSet& aView,TDbColNo aCol)
   1.861 +	{
   1.862 +	OpenL(aView,aCol);
   1.863 +	PushL();
   1.864 +	}
   1.865 +
   1.866 +// Class RDbColWriteStream
   1.867 +
   1.868 +/** Opens the column with the specified ordinal in the current row, and in the 
   1.869 +specified rowset, and prepares the column for being written or replaced. The 
   1.870 +rowset must be updating or inserting a row.
   1.871 +
   1.872 +@param aView The rowset which has the row and column to be written.
   1.873 +@param aCol The column ordinal of the column to be written. 
   1.874 +
   1.875 +@capability Note For a secure shared database, the caller must satisfy the write
   1.876 +            access policy for the table.
   1.877 +*/
   1.878 +EXPORT_C void RDbColWriteStream::OpenL(RDbRowSet& aView,TDbColNo aCol)
   1.879 +	{
   1.880 +	Attach(aView.ColSinkL(aCol));
   1.881 +	}
   1.882 +
   1.883 +/** Opens the column with the specified ordinal in the current row, and in the 
   1.884 +specified rowset, and prepares the column for being written or replaced, putting 
   1.885 +a cleanup item for this object onto the cleanup stack. The rowset must be 
   1.886 +updating or inserting a row. 
   1.887 +
   1.888 +Placing the cleanup object on the cleanup stack allows allocated resources 
   1.889 +to be cleaned up if a subsequent leave occurs.
   1.890 +
   1.891 +@param aView The rowset which has the row and column to be written.
   1.892 +@param aCol The column ordinal of the column to be written. 
   1.893 +
   1.894 +@capability Note For a secure shared database, the caller must satisfy the write
   1.895 +            access policy for the table.
   1.896 +*/
   1.897 +EXPORT_C void RDbColWriteStream::OpenLC(RDbRowSet& aView,TDbColNo aCol)
   1.898 +	{
   1.899 +	OpenL(aView,aCol);
   1.900 +	PushL();
   1.901 +	}
   1.902 +
   1.903 +// Class TDbWindow
   1.904 +
   1.905 +/** Constructs this object with the preferred shape. When fully evaluated, the 
   1.906 +view will try to have aForeSlots rows immediately available for navigation 
   1.907 +forwards, and aRearSlots rows immediately available for navigation backwards.
   1.908 +
   1.909 +@param aForeSlots The number of rows to evaluate ahead of the current row.
   1.910 +@param aRearSlots The number of rows to evaluate behind the current row. */
   1.911 +EXPORT_C TDbWindow::TDbWindow(TInt aForeSlots,TInt aRearSlots)
   1.912 +	: iSize(aForeSlots+aRearSlots+1), iPreferredPos(aRearSlots)
   1.913 +	{
   1.914 +	__ASSERT_ALWAYS(aForeSlots>=0 && aRearSlots>=0,Panic(EDbInvalidViewWindowParameters));
   1.915 +	}
   1.916 +
   1.917 +// Class RDbView
   1.918 +
   1.919 +/** Prepares the view object for evaluating an SQL select-statement.
   1.920 +
   1.921 +Following preparation, the rowset object can always provide schema information, 
   1.922 +but the view may first require evaluation to generate the rowset for navigation.
   1.923 +
   1.924 +@param aDatabase The database on which to execute the query.
   1.925 +@param aQuery The SQL query and the text comparison mode for the constraint.
   1.926 +@param anAccess The access specification for the rowset. By default, updatable 
   1.927 +access is given.
   1.928 +@return KErrNone, if successful, otherwise one of the other system-wide error 
   1.929 +codes. Specifically: KErrNotFound if The table does not exist in the database 
   1.930 +or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
   1.931 +in the SQL query cannot be provided by an index.KErrArgument if an invalid 
   1.932 +or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
   1.933 +mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
   1.934 +was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
   1.935 +column was too large (did not fit in a 32-bit integral representation). This 
   1.936 +can also be one of the DBMS database error codes.. 
   1.937 +
   1.938 +@capability Note For a secure shared database, the caller must satisfy the read
   1.939 +            access policy for the table.
   1.940 +*/
   1.941 +EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess)
   1.942 +	{
   1.943 +	return Prepare(aDatabase,aQuery,TDbWindow(),anAccess);
   1.944 +	}
   1.945 +
   1.946 +/** Prepares the view object for evaluating an SQL select-statement and specifies 
   1.947 +the evaluation window shape for the rowset.
   1.948 +
   1.949 +The function does not specify the access specification for the rowset
   1.950 +updatable access is given.
   1.951 +
   1.952 +Following preparation, the rowset object can always provide schema information, 
   1.953 +but the view may first require evaluation to generate the rowset for navigation.
   1.954 +
   1.955 +@param aDatabase The database on which to execute the query.
   1.956 +@param aQuery The SQL query and the text comparison mode for the constraint.
   1.957 +@param aWindow The desired evaluation window shape for the rowset. If this 
   1.958 +parameter is omitted, an alternative overload is called e.g. no pre-evaluation 
   1.959 +window is requested.
   1.960 +@return KErrNone, if successful, otherwise one of the other system-wide error 
   1.961 +codes. Specifically: KErrNotFound if The table does not exist in the database 
   1.962 +or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
   1.963 +in the SQL query cannot be provided by an index.KErrArgument if an invalid 
   1.964 +or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
   1.965 +mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
   1.966 +was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
   1.967 +column was too large (did not fit in a 32-bit integral representation). This 
   1.968 +can also be one of the DBMS database error codes. 
   1.969 +
   1.970 +@capability Note For a secure shared database, the caller must satisfy the read
   1.971 +            access policy for the table.
   1.972 +*/
   1.973 +EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow)
   1.974 +	{
   1.975 +	return Prepare(aDatabase,aQuery,aWindow,EUpdatable);
   1.976 +	}
   1.977 +
   1.978 +/** Prepares the view object for evaluating an SQL select-statement, specifies 
   1.979 +the evaluation window shape for the rowset, and sets the access specification 
   1.980 +for the rowset.
   1.981 +
   1.982 +Following preparation, the rowset object can always provide schema information, 
   1.983 +but the view may first require evaluation to generate the rowset for navigation.
   1.984 +
   1.985 +@param aDatabase The database on which to execute the query.
   1.986 +@param aQuery The SQL query and the text comparison mode for the constraint.
   1.987 +@param aWindow The desired evaluation window shape for the rowset. If this 
   1.988 +parameter is omitted, an alternative overload is called e.g. no pre-evaluation 
   1.989 +window is requested.
   1.990 +@param anAccess The access specification for the rowset. If omitted, updatable 
   1.991 +access is given.
   1.992 +@return KErrNone, if successful, otherwise one of the other system-wide error 
   1.993 +codes. Specifically:KErrNotFound if The table does not exist in the database 
   1.994 +or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
   1.995 +in the SQL query cannot be provided by an index.KErrArgument if an invalid 
   1.996 +or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
   1.997 +mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
   1.998 +was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
   1.999 +column was too large (did not fit in a 32-bit integral representation). This 
  1.1000 +can also be one of the DBMS database error codes. 
  1.1001 +
  1.1002 +@capability Note For a secure shared database, the caller must satisfy the read
  1.1003 +            access policy for the table.
  1.1004 +*/
  1.1005 +EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess)
  1.1006 +	{
  1.1007 +	TRAPD(r,iCursor=aDatabase.iDatabase->ViewL(aQuery,aWindow,anAccess));
  1.1008 +	return r;
  1.1009 +	}
  1.1010 +
  1.1011 +/** Use this function to fully evaluate the view. It is equivalent to:
  1.1012 +
  1.1013 +while (Unevaluated()) { Evaluate(); }
  1.1014 +
  1.1015 +@return KErrNone, if successful, otherwise one of the system wide error codes. */
  1.1016 +EXPORT_C TInt RDbView::EvaluateAll()
  1.1017 +	{
  1.1018 +	TInt r;
  1.1019 +	do r=Evaluate(); while (r>0);
  1.1020 +	return r;
  1.1021 +	}
  1.1022 +
  1.1023 +/** Performs a single step of the view evaluation, and returns when the step is 
  1.1024 +complete. To completely evaluate a view in one go, EvaluateAll() should be 
  1.1025 +used.
  1.1026 +
  1.1027 +@return 0, evaluation is complete.> 0, more evaluation can be done. < 0, an 
  1.1028 +error code, see the class overview for more information. */
  1.1029 +EXPORT_C TInt RDbView::Evaluate()
  1.1030 +	{
  1.1031 +	return iCursor->Evaluate();
  1.1032 +	}
  1.1033 +
  1.1034 +/** Performs a single step of the view evaluation, returning immediately and signalling 
  1.1035 +when the step is complete.
  1.1036 +
  1.1037 +This function is most effectively used when the view evaluation is carried 
  1.1038 +out from an active object. 
  1.1039 +
  1.1040 +@param aStatus The request status used to contain completion information for 
  1.1041 +the function. On completion, the status value should be interpreted as follows: 
  1.1042 +0, evaluation is complete.> 0, more evaluation can be done. < 0, an error 
  1.1043 +code, see the class overview for more information. */
  1.1044 +EXPORT_C void RDbView::Evaluate(TRequestStatus& aStatus)
  1.1045 +	{
  1.1046 +	iCursor->Evaluate(aStatus);
  1.1047 +	}
  1.1048 +
  1.1049 +/** Tests whether any more evaluation can be done to a view.
  1.1050 +
  1.1051 +@return ETrue, if the view can be further evaluated; EFalse, if evaluation will 
  1.1052 +have no effect. */
  1.1053 +EXPORT_C TBool RDbView::Unevaluated() const
  1.1054 +	{
  1.1055 +	return iCursor->Unevaluated();
  1.1056 +	}
  1.1057 +
  1.1058 +// Class RDbTable
  1.1059 +
  1.1060 +/** Opens the named table object on a database with the specified access.
  1.1061 +
  1.1062 +If successful, the rowset is positioned to the beginning.
  1.1063 +
  1.1064 +@param aDatabase The database on which to open the table.
  1.1065 +@param aName The name of the table to open.
  1.1066 +@param anAccess The access specification for the rowset, the default is updatable 
  1.1067 +access.
  1.1068 +@return KErrNone, if successful, otherwise one of the system-wide error codes. 
  1.1069 +Specifically:KErrNotFound if the table does not exist in the database.KErrAccessDenied 
  1.1070 +if an incremental operation is in progress. This can also be one of the DBMS 
  1.1071 +database error codes. 
  1.1072 +
  1.1073 +@capability Note For a secure shared database, the caller must satisfy either the read
  1.1074 +            or the write access policy for the table.
  1.1075 +*/
  1.1076 +EXPORT_C TInt RDbTable::Open(RDbDatabase &aDatabase,const TDesC &aName,TAccess anAccess)
  1.1077 +	{
  1.1078 +	TRAPD(r,iCursor=aDatabase.iDatabase->TableL(aName,anAccess));
  1.1079 +	return r;
  1.1080 +	}
  1.1081 +
  1.1082 +/** Sets the specified index as the active index for this table. The rows will 
  1.1083 +be presented in index order, and this index key will be used for lookup by 
  1.1084 +the SeekL() function.
  1.1085 +
  1.1086 +If successful, the rowset is reset to the beginning.
  1.1087 +
  1.1088 +@param anIndex The name of the index to activate.
  1.1089 +@return KErrNone, if successful, otherwise one of the system-wide error codes. 
  1.1090 +Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound 
  1.1091 +if the index does not exist on the table. This can also be one of the DBMS 
  1.1092 +database error codes. 
  1.1093 +
  1.1094 +@capability Note For a secure shared database, the caller must satisfy the read
  1.1095 +            access policy for the table.
  1.1096 +*/
  1.1097 +EXPORT_C TInt RDbTable::SetIndex(const TDesC* anIndex)
  1.1098 +	{
  1.1099 +	TRAPD(r,iCursor->SetIndexL(anIndex));
  1.1100 +	return r;
  1.1101 +	}
  1.1102 +
  1.1103 +/** Finds a row in a table based on a key in the active index.
  1.1104 +
  1.1105 +This function cannot be called while the rowset is currently updating or inserting 
  1.1106 +a row. The currently active index on the table must have a key definition 
  1.1107 +which matches the types in the key value.
  1.1108 +
  1.1109 +Less columns can be added to the key than are present in the index definition: 
  1.1110 +the keys will only be compared up to the columns present further columns 
  1.1111 +in the index are not considered.
  1.1112 +
  1.1113 +If successful the cursor is positioned to the row which was found, otherwise 
  1.1114 +the cursor is left on an invalid row.
  1.1115 +
  1.1116 +The underlying Store database can leave with KErrWrite, if the table was created 
  1.1117 +with insert-only access.
  1.1118 +
  1.1119 +The function can also leave with one of the DBMS database error codes.
  1.1120 +
  1.1121 +@param aKey The key value to lookup in the index.
  1.1122 +@param aComparison The comparison operation for the lookup, the default is 
  1.1123 +to look for an exact match (EEqualTo).
  1.1124 +@return ETrue if a row which compares correctly with the key exists, EFalse if 
  1.1125 +not. 
  1.1126 +
  1.1127 +@capability Note For a secure shared database, the caller must satisfy the read
  1.1128 +            access policy for the table.
  1.1129 +*/
  1.1130 +EXPORT_C TBool RDbTable::SeekL(const TDbSeekKey& aKey,TComparison aComparison)
  1.1131 +	{
  1.1132 +	__ASSERT_ALWAYS(aKey.iKey.Count()>0,Panic(EDbNoColumnsInSeekKey));
  1.1133 +	return iCursor->SeekL(aKey.iKey,aComparison);
  1.1134 +	}
  1.1135 +
  1.1136 +// Class CDbCursor
  1.1137 +
  1.1138 +//
  1.1139 +// Default implementation in terms of ColumnDef. Might be inefficient
  1.1140 +//
  1.1141 +EXPORT_C void CDbCursor::ColumnsL(CDbColSet& aColSet)
  1.1142 +	{
  1.1143 +	TDbCol col;
  1.1144 +	TDbColNo max=ColumnCount();
  1.1145 +	for (TDbColNo ii=0;++ii<=max;)
  1.1146 +		{
  1.1147 +		ColumnDef(col,ii);
  1.1148 +		aColSet.AddL(col);
  1.1149 +		}
  1.1150 +	}
  1.1151 +
  1.1152 +//
  1.1153 +// Default implementation in terms of navigation
  1.1154 +// Faster counting may be possible
  1.1155 +//
  1.1156 +EXPORT_C TInt CDbCursor::CountL(RDbRowSet::TAccuracy)
  1.1157 +	{
  1.1158 +	TDbBookmark::TMark mark;
  1.1159 +	Bookmark(mark);
  1.1160 +	GotoL(RDbRowSet::EBeginning);
  1.1161 +	TInt count=0;
  1.1162 +	while (GotoL(RDbRowSet::ENext))
  1.1163 +		++count;
  1.1164 +	GotoL(mark);
  1.1165 +	return count;
  1.1166 +	}
  1.1167 +
  1.1168 +//
  1.1169 +//  Default implementation in terms of constraints
  1.1170 +//
  1.1171 +EXPORT_C TInt CDbCursor::FindL(RDbRowSet::TDirection aDirection,const TDbQuery& aCriteria)
  1.1172 +	{
  1.1173 +	CDbRowConstraint* constraint=ConstraintL(aCriteria);
  1.1174 +	constraint->PushL();
  1.1175 +	RDbRowSet::TPosition next=aDirection==RDbRowSet::EForwards ? RDbRowSet::ENext : RDbRowSet::EPrevious;
  1.1176 +	TInt skip=0;
  1.1177 +	do
  1.1178 +		{
  1.1179 +		if (MatchL(*constraint))
  1.1180 +			{
  1.1181 +			CleanupStack::PopAndDestroy();	// constraint
  1.1182 +			return skip;
  1.1183 +			}
  1.1184 +		++skip;
  1.1185 +		} while (GotoL(next));
  1.1186 +	CleanupStack::PopAndDestroy();
  1.1187 +	return KErrNotFound;
  1.1188 +	}
  1.1189 +
  1.1190 +TInt CDbCursor::Evaluate()
  1.1191 +	{
  1.1192 +	TRAPD(r,r=EvaluateL());
  1.1193 +	return r;
  1.1194 +	}
  1.1195 +
  1.1196 +CDbRowConstraint* CDbCursor::ConstraintL(const TDbQuery& aQuery)
  1.1197 +	{
  1.1198 +	return AttachContext(this,OpenConstraintL(aQuery));
  1.1199 +	}
  1.1200 +
  1.1201 +//
  1.1202 +// Reserved for future development
  1.1203 +//
  1.1204 +EXPORT_C void CDbCursor::Reserved_1()
  1.1205 +	{
  1.1206 +	}
  1.1207 +
  1.1208 +//
  1.1209 +// Reserved for future development
  1.1210 +//
  1.1211 +EXPORT_C void CDbCursor::Reserved_2()
  1.1212 +	{
  1.1213 +	}