os/persistentdata/persistentstorage/dbms/udbms/UD_CURS.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 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
//
sl@0
    15
sl@0
    16
#include "UD_STD.H"
sl@0
    17
sl@0
    18
// Class RDbRowSet
sl@0
    19
sl@0
    20
/** Resets the rowset.
sl@0
    21
sl@0
    22
For a Table, this just sets the rowset cursor to the beginning position.
sl@0
    23
sl@0
    24
For an SQL view, this discards any evaluated rows and returns the cursor to 
sl@0
    25
the beginning. The view then requires reevaluation.
sl@0
    26
sl@0
    27
The Store Database implementation requires this function to be called in order 
sl@0
    28
to recover an open rowset object after the database has been rolled back. 
sl@0
    29
The rowset does not need to be closed in this situation.
sl@0
    30
sl@0
    31
If a rowset object requires a reset, then all row functions return or leave 
sl@0
    32
with KErrNotReady. */
sl@0
    33
EXPORT_C void RDbRowSet::Reset()
sl@0
    34
	{
sl@0
    35
	iCursor->Reset();
sl@0
    36
	}
sl@0
    37
sl@0
    38
/** Closes the rowset and releases any owned resources. It is safe to close a rowset 
sl@0
    39
object which is not open. */
sl@0
    40
EXPORT_C void RDbRowSet::Close()
sl@0
    41
	{
sl@0
    42
	iCursor.Close();
sl@0
    43
	}
sl@0
    44
sl@0
    45
/** Returns the number of rows available in a rowset.
sl@0
    46
	
sl@0
    47
This can take some time to complete, and a parameter can be passed to request 
sl@0
    48
a quick but not always thorough count of the rows.
sl@0
    49
sl@0
    50
For SQL views, the value returned depends on the evaluation window being used 
sl@0
    51
by the view. If there is an evaluation window this function will always return 
sl@0
    52
the number of rows available in the window, not the total number which could 
sl@0
    53
be returned by the query.
sl@0
    54
sl@0
    55
@param anAccuracy This specifies whether to ensure that an accurate count 
sl@0
    56
is returned, or to give up if this value is not readily available. The default 
sl@0
    57
is to ensure an accurate count.
sl@0
    58
@return The number of rows available in the rowset, or KDbUndefinedCount if 
sl@0
    59
EQuick was specified and the count was not available. 
sl@0
    60
sl@0
    61
@capability Note For a secure shared database, the caller must satisfy either the read
sl@0
    62
            or the write access policy for the table.
sl@0
    63
*/
sl@0
    64
EXPORT_C TInt RDbRowSet::CountL(TAccuracy aAccuracy) const
sl@0
    65
	{
sl@0
    66
	return iCursor->CountL(aAccuracy);
sl@0
    67
	}
sl@0
    68
sl@0
    69
/** Tests whether there are any rows in the rowset. This is often faster than testing 
sl@0
    70
whether CountL()==0.
sl@0
    71
sl@0
    72
@return ETrue if there are no rows available in the rowset, EFalse if there 
sl@0
    73
are one or more. 
sl@0
    74
sl@0
    75
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
    76
            access policy for the table.
sl@0
    77
*/
sl@0
    78
EXPORT_C TBool RDbRowSet::IsEmptyL() const
sl@0
    79
	{
sl@0
    80
	if (AtRow())
sl@0
    81
		return EFalse;
sl@0
    82
	TInt count=CountL(EQuick);
sl@0
    83
	if (count!=KDbUndefinedCount)
sl@0
    84
		return count==0;
sl@0
    85
	TDbBookmark mark=Bookmark();
sl@0
    86
	CDbCursor& cursor=*iCursor;
sl@0
    87
	TBool hasRow=cursor.GotoL(EFirst);
sl@0
    88
	cursor.GotoL(mark.iMark);
sl@0
    89
	return !hasRow;
sl@0
    90
	}
sl@0
    91
sl@0
    92
/** Returns the entire column set for the rowset. This can be used to discover 
sl@0
    93
column ordinals for named columns in this rowset.
sl@0
    94
sl@0
    95
The function leaves with KErrNoMemory if there is not enough memory to carry 
sl@0
    96
out the operation. 
sl@0
    97
sl@0
    98
@return The column set object which describes this rowset structure. The caller 
sl@0
    99
should delete it when it is no longer required. */
sl@0
   100
EXPORT_C CDbColSet* RDbRowSet::ColSetL() const
sl@0
   101
	{
sl@0
   102
	CDbColSet* cs=CDbColSet::NewLC();
sl@0
   103
	iCursor->ColumnsL(*cs);
sl@0
   104
	CleanupStack::Pop();
sl@0
   105
	return cs;
sl@0
   106
	}
sl@0
   107
sl@0
   108
/** Returns the number of columns which are defined in this rowset.
sl@0
   109
sl@0
   110
@return The number of columns which are defined in this rowset. */
sl@0
   111
EXPORT_C TInt RDbRowSet::ColCount() const
sl@0
   112
	{
sl@0
   113
	return iCursor->ColumnCount();
sl@0
   114
	}
sl@0
   115
sl@0
   116
/** Returns the type of a column in the rowset.
sl@0
   117
	
sl@0
   118
@param aCol The column ordinal for which the column type is required. Column 
sl@0
   119
ordinals range from 1 to ColCount().
sl@0
   120
@return The type of the column aCol. */
sl@0
   121
EXPORT_C TDbColType RDbRowSet::ColType(TDbColNo aColNo) const
sl@0
   122
	{
sl@0
   123
	return iCursor->ColumnType(aColNo);
sl@0
   124
	}
sl@0
   125
sl@0
   126
/** Returns the definition of a column in the rowset.
sl@0
   127
	
sl@0
   128
@param aCol The column ordinal for which the column definition is required. 
sl@0
   129
Column ordinals range from 1 to ColCount().
sl@0
   130
@return The definition of the column aCol. */
sl@0
   131
EXPORT_C TDbCol RDbRowSet::ColDef(TDbColNo aColNo) const
sl@0
   132
	{
sl@0
   133
	TDbCol col;
sl@0
   134
	iCursor->ColumnDef(col,aColNo);
sl@0
   135
	return col;
sl@0
   136
	}
sl@0
   137
sl@0
   138
/** Tests whether the cursor is on a row.
sl@0
   139
sl@0
   140
One of the following is true:
sl@0
   141
sl@0
   142
the rowset is currently updating a row
sl@0
   143
sl@0
   144
the rowset is currently inserting a row
sl@0
   145
sl@0
   146
GetL() can be called to retrieve the row
sl@0
   147
sl@0
   148
@return ETrue if the cursor is on a valid row; EFalse, otherwise. */
sl@0
   149
EXPORT_C TBool RDbRowSet::AtRow() const
sl@0
   150
	{
sl@0
   151
	return iCursor->AtRow();
sl@0
   152
	}
sl@0
   153
sl@0
   154
/** Tests whether the cursor is at the beginning of the rowset.
sl@0
   155
sl@0
   156
@return ETrue if the cursor is at the beginning, otherwise EFalse. */
sl@0
   157
EXPORT_C TBool RDbRowSet::AtBeginning() const
sl@0
   158
	{
sl@0
   159
	return iCursor->AtBeginning();
sl@0
   160
	}
sl@0
   161
sl@0
   162
/** Tests whether the cursor is at the end of the rowset.
sl@0
   163
sl@0
   164
@return ETrue if the cursor is at the end, otherwise EFalse. */
sl@0
   165
EXPORT_C TBool RDbRowSet::AtEnd() const
sl@0
   166
	{
sl@0
   167
	return iCursor->AtEnd();
sl@0
   168
	}
sl@0
   169
sl@0
   170
/** Moves the cursor to a specified position.
sl@0
   171
sl@0
   172
This is invoked by Beginning(), End(), FirstL(), LastL(), NextL() and PreviousL() 
sl@0
   173
to navigate the cursor. See those functions for descriptions of how the cursor 
sl@0
   174
behaves given different position specifications.
sl@0
   175
sl@0
   176
@param aPosition Specifies the position to move the cursor to.
sl@0
   177
@return ETrue if the cursor is now at a row, EFalse if it is at the beginning 
sl@0
   178
or end. 
sl@0
   179
sl@0
   180
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   181
            access policy for the table.
sl@0
   182
*/
sl@0
   183
EXPORT_C TBool RDbRowSet::GotoL(TPosition aPosition)
sl@0
   184
	{
sl@0
   185
	return iCursor->GotoL(aPosition);
sl@0
   186
	}
sl@0
   187
sl@0
   188
/** Gets the bookmark for the current cursor position. Bookmarks cannot be extracted 
sl@0
   189
when the rowset is updating or inserting a row.
sl@0
   190
sl@0
   191
The Store Database implementation allows bookmarks to be extracted for any 
sl@0
   192
cursor position including the beginning and end.
sl@0
   193
sl@0
   194
@return A bookmark which can be used to return to the current position using 
sl@0
   195
the GotoL() function. 
sl@0
   196
sl@0
   197
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   198
            access policy for the table.
sl@0
   199
*/
sl@0
   200
EXPORT_C TDbBookmark RDbRowSet::Bookmark() const
sl@0
   201
	{
sl@0
   202
	TDbBookmark mark;
sl@0
   203
	iCursor->Bookmark(mark.iMark);
sl@0
   204
	return mark;
sl@0
   205
	}
sl@0
   206
sl@0
   207
/** Goes to a previously bookmarked position in a rowset.
sl@0
   208
sl@0
   209
The Store Database implements bookmarks which are valid in any rowset based 
sl@0
   210
on the same table or generated by the same query, and which persist across 
sl@0
   211
transaction boundaries.
sl@0
   212
sl@0
   213
@param aMark The bookmark to return to. This should have been returned by 
sl@0
   214
a previous call to Bookmark() on this or an equivalent rowset object. 
sl@0
   215
sl@0
   216
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   217
            access policy for the table.
sl@0
   218
*/
sl@0
   219
EXPORT_C void RDbRowSet::GotoL(const TDbBookmark& aMark)
sl@0
   220
	{
sl@0
   221
	iCursor->GotoL(aMark.iMark);
sl@0
   222
	}
sl@0
   223
sl@0
   224
/** Gets the current row data for access using the column extractor functions. 
sl@0
   225
The cursor must be positioned at a valid row. 
sl@0
   226
sl@0
   227
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   228
            access policy for the table.
sl@0
   229
*/
sl@0
   230
EXPORT_C void RDbRowSet::GetL()
sl@0
   231
	{
sl@0
   232
	iCursor->GetL();
sl@0
   233
	}
sl@0
   234
sl@0
   235
/** Inserts a new row into the rowset. All auto-increment columns will be initialised 
sl@0
   236
with their new values, all other columns will be initialised to NULL values. 
sl@0
   237
If no client-begun transaction is in progress, this function begins an automatic 
sl@0
   238
transaction, which is committed by PutL().
sl@0
   239
sl@0
   240
After the column values have been set using the SetColL() functions, the row 
sl@0
   241
can be written to the database using PutL(). 
sl@0
   242
sl@0
   243
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   244
            access policy for the table.
sl@0
   245
*/
sl@0
   246
EXPORT_C void RDbRowSet::InsertL()
sl@0
   247
	{
sl@0
   248
	iCursor->InsertL(CDbCursor::EClear);
sl@0
   249
	}
sl@0
   250
sl@0
   251
/** Inserts a copy of the current row into the rowset. All auto-increment columns 
sl@0
   252
will be given a new value (as for InsertL()), the other columns will copy 
sl@0
   253
their values from the cursor's current row. If no client-begun transaction 
sl@0
   254
is in progress, this function begins an automatic transaction, which is committed 
sl@0
   255
by PutL().
sl@0
   256
sl@0
   257
After the column values have been modified using the SetColL() functions, 
sl@0
   258
the row can be written to the database using PutL(). 
sl@0
   259
sl@0
   260
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   261
            access policy for the table.
sl@0
   262
*/
sl@0
   263
EXPORT_C void RDbRowSet::InsertCopyL()
sl@0
   264
	{
sl@0
   265
	iCursor->InsertL(CDbCursor::ECopy);
sl@0
   266
	}
sl@0
   267
sl@0
   268
/** Prepares the current row for update. If no client-begun transaction is in progress, 
sl@0
   269
this function begins an automatic transaction, which is committed by PutL().
sl@0
   270
sl@0
   271
After the column values have been modified using the SetColL() functions, 
sl@0
   272
the row can be written back to the database using PutL(). 
sl@0
   273
sl@0
   274
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   275
            access policy for the table.
sl@0
   276
*/
sl@0
   277
EXPORT_C void RDbRowSet::UpdateL()
sl@0
   278
	{
sl@0
   279
	iCursor->UpdateL();
sl@0
   280
	}
sl@0
   281
sl@0
   282
/** Completes the update or insertion of a row.
sl@0
   283
sl@0
   284
First the new row data is validated:
sl@0
   285
sl@0
   286
not-null columns are checked to be not NULL
sl@0
   287
sl@0
   288
numerical columns are checked to be in range for their type
sl@0
   289
sl@0
   290
variable length columns are checked to not exceed their maximum length
sl@0
   291
sl@0
   292
unique index keys are checked to ensure uniqueness is not violated
sl@0
   293
sl@0
   294
Note that modifying auto-increment columns is not prevented by DBMS.
sl@0
   295
sl@0
   296
Following validation the data is written to the database and any affected 
sl@0
   297
indexes are updated. On successful completion of the write, PutL() will then 
sl@0
   298
commit any automatic transaction.
sl@0
   299
sl@0
   300
The cursor is left positioned on the updated or inserted row — where this 
sl@0
   301
lies in the rowset is not always well defined. To return to the row which 
sl@0
   302
was current prior to the update or insertion, a bookmark can be used.
sl@0
   303
sl@0
   304
In the Store Database implementation the written row is located in the rowset 
sl@0
   305
as follows:
sl@0
   306
sl@0
   307
Tables without an active index will leave updated rows in the same location 
sl@0
   308
and append new rows to the end of the rowset.
sl@0
   309
sl@0
   310
Tables with an active index place the row according to the active index ordering.
sl@0
   311
sl@0
   312
SQL views without an evaluation window will place it according to the rowset 
sl@0
   313
ordering. The row may subsequently disappear if it does not match the WHERE 
sl@0
   314
clause of the SQL query.
sl@0
   315
sl@0
   316
SQL views with a full evaluation window will leave updated rows in the same 
sl@0
   317
location and append new rows to the end of the rowset. Re-evaluation may cause 
sl@0
   318
the row to disappear if it does not match the WHERE clause of the SQL query.
sl@0
   319
sl@0
   320
SQL views with a partial evaluation window will leave updated rows in the 
sl@0
   321
same location, new rows are not added to the window and navigation from the 
sl@0
   322
new row is undefined. Further navigation and evaluation of the partial window 
sl@0
   323
will place the rows in the correct location according to the query. 
sl@0
   324
sl@0
   325
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   326
            access policy for the table.
sl@0
   327
*/
sl@0
   328
EXPORT_C void RDbRowSet::PutL()
sl@0
   329
	{
sl@0
   330
	iCursor->PutL();
sl@0
   331
	}
sl@0
   332
sl@0
   333
/** Deletes the current row in a rowset. The rowset must not currently be updating 
sl@0
   334
or inserting the row.
sl@0
   335
sl@0
   336
The rowset cursor is left positioned at the "hole" left by the deletion of 
sl@0
   337
the current row. Navigation to the next or previous row will have the same 
sl@0
   338
effect as if this row had not been deleted. Once the cursor has been moved 
sl@0
   339
from the "hole" it will disappear from the rowset.
sl@0
   340
sl@0
   341
If the client has not begun a transaction, this function will use an automatic 
sl@0
   342
transaction to update the rowset. 
sl@0
   343
sl@0
   344
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   345
            access policy for the table.
sl@0
   346
*/
sl@0
   347
EXPORT_C void RDbRowSet::DeleteL()
sl@0
   348
	{
sl@0
   349
	iCursor->DeleteL();
sl@0
   350
	}
sl@0
   351
sl@0
   352
/** Cancels the update or insertion of a row, or recovers the rowset if PutL() 
sl@0
   353
fails. The cursor will return to the location prior to starting the update 
sl@0
   354
or insertion. It is also safe to call this function when the rowset object 
sl@0
   355
is not updating or inserting a row, in which case it does nothing.
sl@0
   356
sl@0
   357
In the Store database implementation, if this is called to abort a row update 
sl@0
   358
or insertion before PutL() is called or during row validation in PutL(), all 
sl@0
   359
the changes are discarded without requiring a transaction rollback and the 
sl@0
   360
rowset to be Reset(). */
sl@0
   361
EXPORT_C void RDbRowSet::Cancel()
sl@0
   362
	{
sl@0
   363
	iCursor->Cancel();
sl@0
   364
	}
sl@0
   365
sl@0
   366
//
sl@0
   367
// Checks for valid Cursor and column ID
sl@0
   368
//
sl@0
   369
CDbCursor& RDbRowSet::CheckCol(TDbColNo aCol) const
sl@0
   370
	{
sl@0
   371
	CDbCursor& cr=*iCursor;
sl@0
   372
	__ASSERT_ALWAYS(aCol>0&&aCol<=cr.ColumnCount(),Panic(EDbInvalidColumn));
sl@0
   373
	return cr;
sl@0
   374
	}
sl@0
   375
sl@0
   376
//
sl@0
   377
// Checks for valid Cursor, column ID and type
sl@0
   378
//
sl@0
   379
TDbColumnC RDbRowSet::ColumnC(TDbColNo aCol,TDbColType aType) const
sl@0
   380
	{
sl@0
   381
	CDbCursor& cr=*iCursor;
sl@0
   382
	TDbColType cType=cr.ColumnType(aCol);
sl@0
   383
	if (cType!=aType)
sl@0
   384
		{	// not an exact match
sl@0
   385
		if (cType>aType)
sl@0
   386
			Panic(EDbWrongType);		// extraction type is narrower
sl@0
   387
		else if (!IsIntegral(cType))
sl@0
   388
			Panic(EDbWrongType);		// type is non-integral
sl@0
   389
		else if (IsSigned(cType) && IsUnsigned(aType))
sl@0
   390
			Panic(EDbWrongType);		// cannot get signed column as unsigned
sl@0
   391
		}
sl@0
   392
	return cr.ColumnC(aCol);
sl@0
   393
	}
sl@0
   394
sl@0
   395
TDbColumn RDbRowSet::Column(TDbColNo aCol,TDbColType aType)
sl@0
   396
	{
sl@0
   397
	CDbCursor& cr=*iCursor;
sl@0
   398
	__ASSERT_ALWAYS(cr.ColumnType(aCol)==aType,Panic(EDbWrongType));
sl@0
   399
	return cr.Column(aCol);
sl@0
   400
	}
sl@0
   401
sl@0
   402
/** Gets the size in bytes of a column value. This can be used for all column types, 
sl@0
   403
including Long columns. NULL columns return a size of 0.
sl@0
   404
sl@0
   405
Note:
sl@0
   406
sl@0
   407
This may yield unexpected results for small numerical column types as they 
sl@0
   408
are stored in memory as 32-bit values.
sl@0
   409
sl@0
   410
@param aCol The column ordinal of the column to check.
sl@0
   411
@return The length in bytes of column aCol's value. */
sl@0
   412
EXPORT_C TInt RDbRowSet::ColSize(TDbColNo aCol) const
sl@0
   413
	{
sl@0
   414
	return iCursor->ColumnSize(aCol);
sl@0
   415
	}
sl@0
   416
sl@0
   417
/** Gets the length of a column value. As compared with ColSize(), this returns 
sl@0
   418
the number of "units" in the column:
sl@0
   419
sl@0
   420
NULL columns have a length of 0
sl@0
   421
sl@0
   422
non-NULL numerical and date-time columns have a length of 1
sl@0
   423
sl@0
   424
for Text columns the length is the character count
sl@0
   425
sl@0
   426
for Binary columns the length is the byte count
sl@0
   427
sl@0
   428
@param aCol The column ordinal of the column to check.
sl@0
   429
@return The length in "units" of column aCol's value. */
sl@0
   430
EXPORT_C TInt RDbRowSet::ColLength(TDbColNo aCol) const
sl@0
   431
	{
sl@0
   432
	TInt size=ColSize(aCol);
sl@0
   433
	switch (iCursor()->ColumnType(aCol))
sl@0
   434
		{
sl@0
   435
	case EDbColText8:
sl@0
   436
	case EDbColLongText8:
sl@0
   437
	case EDbColBinary:
sl@0
   438
	case EDbColLongBinary:
sl@0
   439
		break;
sl@0
   440
	case EDbColText16:
sl@0
   441
	case EDbColLongText16:
sl@0
   442
		if (size>0)
sl@0
   443
			size>>=1;
sl@0
   444
		break;
sl@0
   445
	default:
sl@0
   446
		if (size)
sl@0
   447
			size=1;
sl@0
   448
		break;
sl@0
   449
		}
sl@0
   450
	return size;
sl@0
   451
	}
sl@0
   452
sl@0
   453
/** Extracts a TInt8 column value.
sl@0
   454
sl@0
   455
@param aCol The column ordinal of the column to extract.
sl@0
   456
@return The value of column aCol. */
sl@0
   457
EXPORT_C TInt8 RDbRowSet::ColInt8(TDbColNo aCol) const
sl@0
   458
	{
sl@0
   459
	return ColumnC(aCol,EDbColInt8).Int8();
sl@0
   460
	} 
sl@0
   461
sl@0
   462
/** Extracts a TInt16 or TInt8 column value.
sl@0
   463
sl@0
   464
@param aCol The column ordinal of the column to extract.
sl@0
   465
@return The value of column aCol. */
sl@0
   466
EXPORT_C TInt16 RDbRowSet::ColInt16(TDbColNo aCol) const
sl@0
   467
	{
sl@0
   468
	return ColumnC(aCol,EDbColInt16).Int16();
sl@0
   469
	} 
sl@0
   470
sl@0
   471
/** Extracts a TInt32, TInt16 or TInt8 column value.
sl@0
   472
sl@0
   473
@param aCol The column ordinal of the column to extract.
sl@0
   474
@return The value of column aCol. */
sl@0
   475
EXPORT_C TInt32 RDbRowSet::ColInt32(TDbColNo aCol) const
sl@0
   476
	{
sl@0
   477
	return ColumnC(aCol,EDbColInt32).Int32();
sl@0
   478
	} 
sl@0
   479
sl@0
   480
/** Extracts a TInt64 column value.
sl@0
   481
sl@0
   482
@param aCol The column ordinal of the column to extract.
sl@0
   483
@return The value of column aCol. */
sl@0
   484
EXPORT_C TInt64 RDbRowSet::ColInt64(TDbColNo aCol) const
sl@0
   485
	{
sl@0
   486
	CDbCursor& cr=*iCursor;
sl@0
   487
	TDbColumnC c=cr.ColumnC(aCol);
sl@0
   488
	TDbColType t=cr.ColumnType(aCol);
sl@0
   489
	if (t==EDbColInt64)
sl@0
   490
		return c.Int64();
sl@0
   491
	if (t>EDbColInt64)
sl@0
   492
		Panic(EDbWrongType);
sl@0
   493
	if (IsSigned(t))
sl@0
   494
		return TInt(c.Int32());
sl@0
   495
	return TUint(c.Uint32());
sl@0
   496
	} 
sl@0
   497
sl@0
   498
/** Extracts a Uint8 or Bit column value.
sl@0
   499
sl@0
   500
@param aCol The column ordinal of the column to extract.
sl@0
   501
@return The value of column aCol. */
sl@0
   502
EXPORT_C TUint8 RDbRowSet::ColUint8(TDbColNo aCol) const
sl@0
   503
	{
sl@0
   504
	return ColumnC(aCol,EDbColUint8).Uint8();
sl@0
   505
	} 
sl@0
   506
sl@0
   507
/** Extracts a Uint16, Uint8 or Bit column value.
sl@0
   508
sl@0
   509
@param aCol The column ordinal of the column to extract.
sl@0
   510
@return The value of column aCol. */
sl@0
   511
EXPORT_C TUint16 RDbRowSet::ColUint16(TDbColNo aCol) const
sl@0
   512
	{
sl@0
   513
	return ColumnC(aCol,EDbColUint16).Uint16();
sl@0
   514
	} 
sl@0
   515
sl@0
   516
/** Extracts a Uint32, Uint16, Uint8 or Bit column value.
sl@0
   517
sl@0
   518
@param aCol The column ordinal of the column to extract.
sl@0
   519
@return The value of column aCol. */
sl@0
   520
EXPORT_C TUint32 RDbRowSet::ColUint32(TDbColNo aCol) const
sl@0
   521
	{
sl@0
   522
	return ColumnC(aCol,EDbColUint32).Uint32();
sl@0
   523
	} 
sl@0
   524
sl@0
   525
/** Extracts a TReal32 column value.
sl@0
   526
sl@0
   527
@param aCol The column ordinal of the column to extract.
sl@0
   528
@return The value of column aCol. */
sl@0
   529
EXPORT_C TReal32 RDbRowSet::ColReal32(TDbColNo aCol) const __SOFTFP
sl@0
   530
	{
sl@0
   531
	return ColumnC(aCol,EDbColReal32).Real32();
sl@0
   532
	} 
sl@0
   533
sl@0
   534
/** Extracts a TReal64 column value.
sl@0
   535
sl@0
   536
@param aCol The column ordinal of the column to extract.
sl@0
   537
@return The value of column aCol. */
sl@0
   538
EXPORT_C TReal64 RDbRowSet::ColReal64(TDbColNo aCol) const __SOFTFP
sl@0
   539
	{
sl@0
   540
	return ColumnC(aCol,EDbColReal64).Real64();
sl@0
   541
	} 
sl@0
   542
sl@0
   543
/** Extracts a TTime column value.
sl@0
   544
sl@0
   545
@param aCol The column ordinal of the column to extract.
sl@0
   546
@return The value of column aCol. TTime may be either local time or universal time. 
sl@0
   547
DBMS doesn't interpret the value of TTime, it is left up to the user to know which has been used.*/
sl@0
   548
EXPORT_C TTime RDbRowSet::ColTime(TDbColNo aCol) const
sl@0
   549
	{
sl@0
   550
	return ColumnC(aCol,EDbColDateTime).Time();
sl@0
   551
	} 
sl@0
   552
sl@0
   553
/** Extracts any column type, except Long columns, as binary data.
sl@0
   554
Can handle any type of non-long column
sl@0
   555
sl@0
   556
@param aCol The column ordinal of the column to extract.
sl@0
   557
@return A descriptor of column aCol's value. */
sl@0
   558
EXPORT_C TPtrC8 RDbRowSet::ColDes8(TDbColNo aCol) const
sl@0
   559
	{
sl@0
   560
	CDbCursor& cr=*iCursor;
sl@0
   561
	__ASSERT_ALWAYS(!IsLong(cr.ColumnType(aCol)),Panic(EDbWrongType));
sl@0
   562
	return cr.ColumnC(aCol).PtrC8();
sl@0
   563
	} 
sl@0
   564
sl@0
   565
/** Extracts a column as Unicode text.
sl@0
   566
sl@0
   567
@param aCol The column ordinal of the column to extract
sl@0
   568
@return A descriptor of column aCol's value. */
sl@0
   569
EXPORT_C TPtrC16 RDbRowSet::ColDes16(TDbColNo aCol) const
sl@0
   570
	{
sl@0
   571
	return ColumnC(aCol,EDbColText16).PtrC16();
sl@0
   572
	}
sl@0
   573
sl@0
   574
/** Extracts a Text column value. The column type must match the default descriptor 
sl@0
   575
type to use this extractor, ie. it must be equal to EDbColText.
sl@0
   576
sl@0
   577
@param aCol The column ordinal of the column to extract.
sl@0
   578
@return A descriptor of column aCol's value. */
sl@0
   579
EXPORT_C TPtrC RDbRowSet::ColDes(TDbColNo aCol) const
sl@0
   580
	{
sl@0
   581
	return ColDes16(aCol);
sl@0
   582
	}
sl@0
   583
sl@0
   584
/** Use this function to set the value of a column to NULL.
sl@0
   585
sl@0
   586
@param aCol The column ordinal of the column to set to NULL. 
sl@0
   587
sl@0
   588
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   589
            access policy for the table.
sl@0
   590
*/
sl@0
   591
EXPORT_C void RDbRowSet::SetColNullL(TDbColNo aCol)
sl@0
   592
	{
sl@0
   593
	iCursor->SetNullL(aCol);
sl@0
   594
	}
sl@0
   595
sl@0
   596
/** Sets a TInt32, TInt16 or TInt8 column value.
sl@0
   597
sl@0
   598
@param aCol The column ordinal of the column to set.
sl@0
   599
@param aValue The new column value. */
sl@0
   600
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt32 aValue)
sl@0
   601
	{
sl@0
   602
	CDbCursor& cr=*iCursor;
sl@0
   603
	TDbColType t=cr.ColumnType(aCol);
sl@0
   604
	if (t<EDbColInt64)
sl@0
   605
		{	// set any <= 32-bit integral type
sl@0
   606
		if (IsSigned(t))
sl@0
   607
			{
sl@0
   608
			cr.Column(aCol).SetL(aValue);
sl@0
   609
			return;
sl@0
   610
			}
sl@0
   611
		if (aValue>=0)
sl@0
   612
			{	// check the domain for unsigned columns
sl@0
   613
			cr.Column(aCol).SetL(aValue);
sl@0
   614
			return;
sl@0
   615
			}
sl@0
   616
		}
sl@0
   617
	Panic(EDbWrongType);
sl@0
   618
	}
sl@0
   619
sl@0
   620
/** Sets a TInt64 column value.
sl@0
   621
sl@0
   622
@param aCol The column ordinal of the column to set.
sl@0
   623
@param aValue The new column value. */
sl@0
   624
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TInt64 aValue)
sl@0
   625
	{
sl@0
   626
	CDbCursor& cr=*iCursor;
sl@0
   627
	TDbColumn c=cr.Column(aCol);
sl@0
   628
	TDbColType t=cr.ColumnType(aCol);
sl@0
   629
	if (t==EDbColInt64)
sl@0
   630
		{		// exact match
sl@0
   631
		c.SetL(aValue);
sl@0
   632
		return;
sl@0
   633
		}
sl@0
   634
	if (t<EDbColInt64)
sl@0
   635
		{
sl@0
   636
		TInt32 l = I64LOW(aValue);
sl@0
   637
		TInt32 h = I64HIGH(aValue);
sl@0
   638
		if (IsSigned(t))
sl@0
   639
			{	// check the domain for signed 32-bit 
sl@0
   640
			if (h==l>>31)		// sign-extend l gives aValue
sl@0
   641
				{
sl@0
   642
				c.SetL(l);
sl@0
   643
				return;
sl@0
   644
				}
sl@0
   645
			}	// invalid type, drop through to panic
sl@0
   646
		else
sl@0
   647
			{	// check the domain for unsigned 32-bit 
sl@0
   648
			if (h==0)
sl@0
   649
				{				// zero extend l gives aValue
sl@0
   650
				c.SetL(l);	// in unsigned 32 bit range
sl@0
   651
				return;
sl@0
   652
				}
sl@0
   653
			}	// invalid type, drop through to panic
sl@0
   654
		}
sl@0
   655
	Panic(EDbWrongType);
sl@0
   656
	}
sl@0
   657
sl@0
   658
/** Sets a TUint32, TUint16, TUint8 or Bit column value.
sl@0
   659
sl@0
   660
@param aCol The column ordinal of the column to set.
sl@0
   661
@param aValue The new column value. */
sl@0
   662
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TUint32 aValue)
sl@0
   663
	{
sl@0
   664
	CDbCursor& cr=*iCursor;
sl@0
   665
	TDbColType t=cr.ColumnType(aCol);
sl@0
   666
	if (t<EDbColInt64)
sl@0
   667
		{	// set any <= 32-bit integral type
sl@0
   668
		if (IsUnsigned(t))
sl@0
   669
			{
sl@0
   670
			cr.Column(aCol).SetL(aValue);
sl@0
   671
			return;
sl@0
   672
			}
sl@0
   673
		if (aValue<=TUint32(KMaxTInt))
sl@0
   674
			{	// check the domain for signed columns
sl@0
   675
			cr.Column(aCol).SetL(aValue);
sl@0
   676
			return;
sl@0
   677
			}
sl@0
   678
		}
sl@0
   679
	Panic(EDbWrongType);
sl@0
   680
	}
sl@0
   681
sl@0
   682
/** Sets a TReal32 column value.
sl@0
   683
sl@0
   684
@param aCol The column ordinal of the column to set.
sl@0
   685
@param aValue The new column value. */
sl@0
   686
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal32 aValue) __SOFTFP
sl@0
   687
	{
sl@0
   688
	Column(aCol,EDbColReal32).SetL(aValue);
sl@0
   689
	}
sl@0
   690
sl@0
   691
/** Sets a TReal64 column value.
sl@0
   692
sl@0
   693
@param aCol The column ordinal of the column to set.
sl@0
   694
@param aValue The new column value. */
sl@0
   695
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TReal64 aValue) __SOFTFP
sl@0
   696
	{
sl@0
   697
	Column(aCol,EDbColReal64).SetL(aValue);
sl@0
   698
	}
sl@0
   699
sl@0
   700
/** Sets a TTime column value.
sl@0
   701
sl@0
   702
TTime could be either local time or universal time. 
sl@0
   703
DBMS doesn't interpret the value of TTime, it is left up to the user to decide which should be used.
sl@0
   704
sl@0
   705
@param aCol The column ordinal of the column to set.
sl@0
   706
@param aValue The new column value. */
sl@0
   707
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,TTime aValue)
sl@0
   708
	{
sl@0
   709
	Column(aCol,EDbColDateTime).SetL(aValue);
sl@0
   710
	}
sl@0
   711
sl@0
   712
/** Sets a column value from an 8 bit descriptor. This function can also set the 
sl@0
   713
value of Long columns.
sl@0
   714
sl@0
   715
Usually this is used to set a Text8 or LongText8 column from a non-Unicode 
sl@0
   716
text descriptor, but can be used for any column type: the data content is 
sl@0
   717
validated when the row is PutL().
sl@0
   718
sl@0
   719
@param aCol The column ordinal of the column to set.
sl@0
   720
@param aValue The new column value. */
sl@0
   721
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC8 &aValue)
sl@0
   722
	{
sl@0
   723
	CDbCursor& c=*iCursor;
sl@0
   724
	if (IsLong(c.ColumnType(aCol)))
sl@0
   725
		{
sl@0
   726
		RDbColWriteStream strm;
sl@0
   727
		strm.OpenLC(*this,aCol);
sl@0
   728
		strm.WriteL(aValue);
sl@0
   729
		strm.CommitL();
sl@0
   730
		CleanupStack::PopAndDestroy();
sl@0
   731
		}
sl@0
   732
	else
sl@0
   733
		c.Column(aCol).SetL(aValue);
sl@0
   734
	}
sl@0
   735
sl@0
   736
/** Set a column value from Unicode text.
sl@0
   737
sl@0
   738
@param aCol The column ordinal of the column to set.
sl@0
   739
@param aValue The new column value. */
sl@0
   740
EXPORT_C void RDbRowSet::SetColL(TDbColNo aCol,const TDesC16 &aValue)
sl@0
   741
	{
sl@0
   742
	CDbCursor& c=*iCursor;
sl@0
   743
	if (c.ColumnType(aCol)==EDbColLongText16)
sl@0
   744
		{
sl@0
   745
		RDbColWriteStream strm;
sl@0
   746
		strm.OpenLC(*this,aCol);
sl@0
   747
		strm.WriteL(aValue);
sl@0
   748
		strm.CommitL();
sl@0
   749
		CleanupStack::PopAndDestroy();
sl@0
   750
		}
sl@0
   751
	else
sl@0
   752
		Column(aCol,EDbColText16).SetL(aValue);
sl@0
   753
	}
sl@0
   754
sl@0
   755
/** Searches through a rowset for a row which fulfils an SQL search-condition. 
sl@0
   756
The search begins from the current position (which must be a valid row) and 
sl@0
   757
proceeds forwards or backwards through the available rows until it finds a 
sl@0
   758
match or runs out of rows.
sl@0
   759
sl@0
   760
The cursor is positioned to the matching row (or beginning/end of set) on 
sl@0
   761
return.
sl@0
   762
sl@0
   763
This is a brute-force approach to finding a row using an index for key-based 
sl@0
   764
retrieval on a Table rowset is a much faster but less flexible way of finding 
sl@0
   765
rows.
sl@0
   766
sl@0
   767
@param aDirection Specifies which direction to search after testing the current 
sl@0
   768
row.
sl@0
   769
@param aCriteria A query object containing an SQL search-condition to match 
sl@0
   770
against.
sl@0
   771
@return If no match is found KErrNotFound is returned. Otherwise the number 
sl@0
   772
of rows navigated while finding a match, which may be 0 if the current row 
sl@0
   773
matches. 
sl@0
   774
sl@0
   775
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   776
            access policy for the table.
sl@0
   777
*/
sl@0
   778
EXPORT_C TInt RDbRowSet::FindL(TDirection aDirection,TDbQuery aCriteria)
sl@0
   779
	{
sl@0
   780
	return iCursor->FindL(aDirection,aCriteria);
sl@0
   781
	}
sl@0
   782
sl@0
   783
/** Tests whether the current row in the rowset matches a previously compiled row 
sl@0
   784
constraint. The rowset must not currently be updating or inserting a row.
sl@0
   785
sl@0
   786
@param aConstraint A row constraint object which must have been previously 
sl@0
   787
opened on this rowset object.
sl@0
   788
@return ETrue if the current row fulfils the constraint, otherwise EFalse. 
sl@0
   789
sl@0
   790
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   791
            access policy for the table.
sl@0
   792
*/
sl@0
   793
EXPORT_C TBool RDbRowSet::MatchL(const RDbRowConstraint& aConstraint)
sl@0
   794
	{
sl@0
   795
	return iCursor->MatchL(*aConstraint.iConstraint);
sl@0
   796
	}
sl@0
   797
sl@0
   798
// Class RDbRowConstraint
sl@0
   799
sl@0
   800
/** Compiles the specified SQL search-condition for matching against rows in the 
sl@0
   801
specified rowset. The text comparison supplied in aCriteria is used for all 
sl@0
   802
text columns in the constraint.
sl@0
   803
sl@0
   804
@param aView The rowset to which the constraint will apply.
sl@0
   805
@param aCriteria The SQL string and the text comparison mode for the constraint.
sl@0
   806
@return KErrNone, if successful, otherwise one of the system-wide error codes. 
sl@0
   807
Specifically:KErrNotFound if a column name in the SQL query does not exist.KErrArgument 
sl@0
   808
if Invalid or unrecognised SQL syntax was used.KErrGeneral for a column type 
sl@0
   809
mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
sl@0
   810
was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
sl@0
   811
column was too large (did not fit in a 32-bit integral representation). This 
sl@0
   812
can also be one of the DBMS database error codes. 
sl@0
   813
sl@0
   814
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   815
            access policy for the table.
sl@0
   816
*/
sl@0
   817
EXPORT_C TInt RDbRowConstraint::Open(const RDbRowSet& aView,TDbQuery aCriteria)
sl@0
   818
	{
sl@0
   819
	TRAPD(r,iConstraint=aView.iCursor->ConstraintL(aCriteria));
sl@0
   820
	return r;
sl@0
   821
	}
sl@0
   822
sl@0
   823
/** Releases the resources used by the constraint before discarding the constraint 
sl@0
   824
object. */
sl@0
   825
EXPORT_C void RDbRowConstraint::Close()
sl@0
   826
	{
sl@0
   827
	iConstraint.Close();
sl@0
   828
	}
sl@0
   829
sl@0
   830
// Class RDbColReadStream
sl@0
   831
sl@0
   832
/** Opens the column with the specified ordinal in the specified current row in 
sl@0
   833
the rowset. The row must have previously been read into the rowset using RDbRowSet::GetL().
sl@0
   834
sl@0
   835
@param aView The rowset which has the row and column to be read.
sl@0
   836
@param aCol The column ordinal of the column to be read 
sl@0
   837
sl@0
   838
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   839
            access policy for the table.
sl@0
   840
*/
sl@0
   841
EXPORT_C void RDbColReadStream::OpenL(const RDbRowSet& aView,TDbColNo aCol)
sl@0
   842
	{
sl@0
   843
	Attach(aView.ColSourceL(aCol));
sl@0
   844
	}
sl@0
   845
sl@0
   846
/** Opens the column with the specified ordinal in the specified current row in 
sl@0
   847
the rowset and puts a pointer to the column on the cleanup stack.
sl@0
   848
sl@0
   849
The row must have previously been read into the rowset using RDbRowSet::GetL().
sl@0
   850
sl@0
   851
@param aView The rowset which has the row and column to be read.
sl@0
   852
@param aCol The column ordinal of the column to be read. 
sl@0
   853
sl@0
   854
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   855
            access policy for the table.
sl@0
   856
*/
sl@0
   857
EXPORT_C void RDbColReadStream::OpenLC(const RDbRowSet& aView,TDbColNo aCol)
sl@0
   858
	{
sl@0
   859
	OpenL(aView,aCol);
sl@0
   860
	PushL();
sl@0
   861
	}
sl@0
   862
sl@0
   863
// Class RDbColWriteStream
sl@0
   864
sl@0
   865
/** Opens the column with the specified ordinal in the current row, and in the 
sl@0
   866
specified rowset, and prepares the column for being written or replaced. The 
sl@0
   867
rowset must be updating or inserting a row.
sl@0
   868
sl@0
   869
@param aView The rowset which has the row and column to be written.
sl@0
   870
@param aCol The column ordinal of the column to be written. 
sl@0
   871
sl@0
   872
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   873
            access policy for the table.
sl@0
   874
*/
sl@0
   875
EXPORT_C void RDbColWriteStream::OpenL(RDbRowSet& aView,TDbColNo aCol)
sl@0
   876
	{
sl@0
   877
	Attach(aView.ColSinkL(aCol));
sl@0
   878
	}
sl@0
   879
sl@0
   880
/** Opens the column with the specified ordinal in the current row, and in the 
sl@0
   881
specified rowset, and prepares the column for being written or replaced, putting 
sl@0
   882
a cleanup item for this object onto the cleanup stack. The rowset must be 
sl@0
   883
updating or inserting a row. 
sl@0
   884
sl@0
   885
Placing the cleanup object on the cleanup stack allows allocated resources 
sl@0
   886
to be cleaned up if a subsequent leave occurs.
sl@0
   887
sl@0
   888
@param aView The rowset which has the row and column to be written.
sl@0
   889
@param aCol The column ordinal of the column to be written. 
sl@0
   890
sl@0
   891
@capability Note For a secure shared database, the caller must satisfy the write
sl@0
   892
            access policy for the table.
sl@0
   893
*/
sl@0
   894
EXPORT_C void RDbColWriteStream::OpenLC(RDbRowSet& aView,TDbColNo aCol)
sl@0
   895
	{
sl@0
   896
	OpenL(aView,aCol);
sl@0
   897
	PushL();
sl@0
   898
	}
sl@0
   899
sl@0
   900
// Class TDbWindow
sl@0
   901
sl@0
   902
/** Constructs this object with the preferred shape. When fully evaluated, the 
sl@0
   903
view will try to have aForeSlots rows immediately available for navigation 
sl@0
   904
forwards, and aRearSlots rows immediately available for navigation backwards.
sl@0
   905
sl@0
   906
@param aForeSlots The number of rows to evaluate ahead of the current row.
sl@0
   907
@param aRearSlots The number of rows to evaluate behind the current row. */
sl@0
   908
EXPORT_C TDbWindow::TDbWindow(TInt aForeSlots,TInt aRearSlots)
sl@0
   909
	: iSize(aForeSlots+aRearSlots+1), iPreferredPos(aRearSlots)
sl@0
   910
	{
sl@0
   911
	__ASSERT_ALWAYS(aForeSlots>=0 && aRearSlots>=0,Panic(EDbInvalidViewWindowParameters));
sl@0
   912
	}
sl@0
   913
sl@0
   914
// Class RDbView
sl@0
   915
sl@0
   916
/** Prepares the view object for evaluating an SQL select-statement.
sl@0
   917
sl@0
   918
Following preparation, the rowset object can always provide schema information, 
sl@0
   919
but the view may first require evaluation to generate the rowset for navigation.
sl@0
   920
sl@0
   921
@param aDatabase The database on which to execute the query.
sl@0
   922
@param aQuery The SQL query and the text comparison mode for the constraint.
sl@0
   923
@param anAccess The access specification for the rowset. By default, updatable 
sl@0
   924
access is given.
sl@0
   925
@return KErrNone, if successful, otherwise one of the other system-wide error 
sl@0
   926
codes. Specifically: KErrNotFound if The table does not exist in the database 
sl@0
   927
or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
sl@0
   928
in the SQL query cannot be provided by an index.KErrArgument if an invalid 
sl@0
   929
or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
sl@0
   930
mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
sl@0
   931
was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
sl@0
   932
column was too large (did not fit in a 32-bit integral representation). This 
sl@0
   933
can also be one of the DBMS database error codes.. 
sl@0
   934
sl@0
   935
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   936
            access policy for the table.
sl@0
   937
*/
sl@0
   938
EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,TAccess anAccess)
sl@0
   939
	{
sl@0
   940
	return Prepare(aDatabase,aQuery,TDbWindow(),anAccess);
sl@0
   941
	}
sl@0
   942
sl@0
   943
/** Prepares the view object for evaluating an SQL select-statement and specifies 
sl@0
   944
the evaluation window shape for the rowset.
sl@0
   945
sl@0
   946
The function does not specify the access specification for the rowset
sl@0
   947
updatable access is given.
sl@0
   948
sl@0
   949
Following preparation, the rowset object can always provide schema information, 
sl@0
   950
but the view may first require evaluation to generate the rowset for navigation.
sl@0
   951
sl@0
   952
@param aDatabase The database on which to execute the query.
sl@0
   953
@param aQuery The SQL query and the text comparison mode for the constraint.
sl@0
   954
@param aWindow The desired evaluation window shape for the rowset. If this 
sl@0
   955
parameter is omitted, an alternative overload is called e.g. no pre-evaluation 
sl@0
   956
window is requested.
sl@0
   957
@return KErrNone, if successful, otherwise one of the other system-wide error 
sl@0
   958
codes. Specifically: KErrNotFound if The table does not exist in the database 
sl@0
   959
or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
sl@0
   960
in the SQL query cannot be provided by an index.KErrArgument if an invalid 
sl@0
   961
or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
sl@0
   962
mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
sl@0
   963
was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
sl@0
   964
column was too large (did not fit in a 32-bit integral representation). This 
sl@0
   965
can also be one of the DBMS database error codes. 
sl@0
   966
sl@0
   967
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   968
            access policy for the table.
sl@0
   969
*/
sl@0
   970
EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow)
sl@0
   971
	{
sl@0
   972
	return Prepare(aDatabase,aQuery,aWindow,EUpdatable);
sl@0
   973
	}
sl@0
   974
sl@0
   975
/** Prepares the view object for evaluating an SQL select-statement, specifies 
sl@0
   976
the evaluation window shape for the rowset, and sets the access specification 
sl@0
   977
for the rowset.
sl@0
   978
sl@0
   979
Following preparation, the rowset object can always provide schema information, 
sl@0
   980
but the view may first require evaluation to generate the rowset for navigation.
sl@0
   981
sl@0
   982
@param aDatabase The database on which to execute the query.
sl@0
   983
@param aQuery The SQL query and the text comparison mode for the constraint.
sl@0
   984
@param aWindow The desired evaluation window shape for the rowset. If this 
sl@0
   985
parameter is omitted, an alternative overload is called e.g. no pre-evaluation 
sl@0
   986
window is requested.
sl@0
   987
@param anAccess The access specification for the rowset. If omitted, updatable 
sl@0
   988
access is given.
sl@0
   989
@return KErrNone, if successful, otherwise one of the other system-wide error 
sl@0
   990
codes. Specifically:KErrNotFound if The table does not exist in the database 
sl@0
   991
or a column name in the SQL query does not exist.KErrNotSupported if a sort-specification 
sl@0
   992
in the SQL query cannot be provided by an index.KErrArgument if an invalid 
sl@0
   993
or unrecognised SQL syntax was used.KErrGeneral if there is a column type 
sl@0
   994
mismatch in a predicate in the SQL query or if a date-literal in the SQL query 
sl@0
   995
was invalid.KErrOverflow if a number-literal in the SQL query for an integral 
sl@0
   996
column was too large (did not fit in a 32-bit integral representation). This 
sl@0
   997
can also be one of the DBMS database error codes. 
sl@0
   998
sl@0
   999
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
  1000
            access policy for the table.
sl@0
  1001
*/
sl@0
  1002
EXPORT_C TInt RDbView::Prepare(RDbDatabase& aDatabase,const TDbQuery& aQuery,const TDbWindow& aWindow,TAccess anAccess)
sl@0
  1003
	{
sl@0
  1004
	TRAPD(r,iCursor=aDatabase.iDatabase->ViewL(aQuery,aWindow,anAccess));
sl@0
  1005
	return r;
sl@0
  1006
	}
sl@0
  1007
sl@0
  1008
/** Use this function to fully evaluate the view. It is equivalent to:
sl@0
  1009
sl@0
  1010
while (Unevaluated()) { Evaluate(); }
sl@0
  1011
sl@0
  1012
@return KErrNone, if successful, otherwise one of the system wide error codes. */
sl@0
  1013
EXPORT_C TInt RDbView::EvaluateAll()
sl@0
  1014
	{
sl@0
  1015
	TInt r;
sl@0
  1016
	do r=Evaluate(); while (r>0);
sl@0
  1017
	return r;
sl@0
  1018
	}
sl@0
  1019
sl@0
  1020
/** Performs a single step of the view evaluation, and returns when the step is 
sl@0
  1021
complete. To completely evaluate a view in one go, EvaluateAll() should be 
sl@0
  1022
used.
sl@0
  1023
sl@0
  1024
@return 0, evaluation is complete.> 0, more evaluation can be done. < 0, an 
sl@0
  1025
error code, see the class overview for more information. */
sl@0
  1026
EXPORT_C TInt RDbView::Evaluate()
sl@0
  1027
	{
sl@0
  1028
	return iCursor->Evaluate();
sl@0
  1029
	}
sl@0
  1030
sl@0
  1031
/** Performs a single step of the view evaluation, returning immediately and signalling 
sl@0
  1032
when the step is complete.
sl@0
  1033
sl@0
  1034
This function is most effectively used when the view evaluation is carried 
sl@0
  1035
out from an active object. 
sl@0
  1036
sl@0
  1037
@param aStatus The request status used to contain completion information for 
sl@0
  1038
the function. On completion, the status value should be interpreted as follows: 
sl@0
  1039
0, evaluation is complete.> 0, more evaluation can be done. < 0, an error 
sl@0
  1040
code, see the class overview for more information. */
sl@0
  1041
EXPORT_C void RDbView::Evaluate(TRequestStatus& aStatus)
sl@0
  1042
	{
sl@0
  1043
	iCursor->Evaluate(aStatus);
sl@0
  1044
	}
sl@0
  1045
sl@0
  1046
/** Tests whether any more evaluation can be done to a view.
sl@0
  1047
sl@0
  1048
@return ETrue, if the view can be further evaluated; EFalse, if evaluation will 
sl@0
  1049
have no effect. */
sl@0
  1050
EXPORT_C TBool RDbView::Unevaluated() const
sl@0
  1051
	{
sl@0
  1052
	return iCursor->Unevaluated();
sl@0
  1053
	}
sl@0
  1054
sl@0
  1055
// Class RDbTable
sl@0
  1056
sl@0
  1057
/** Opens the named table object on a database with the specified access.
sl@0
  1058
sl@0
  1059
If successful, the rowset is positioned to the beginning.
sl@0
  1060
sl@0
  1061
@param aDatabase The database on which to open the table.
sl@0
  1062
@param aName The name of the table to open.
sl@0
  1063
@param anAccess The access specification for the rowset, the default is updatable 
sl@0
  1064
access.
sl@0
  1065
@return KErrNone, if successful, otherwise one of the system-wide error codes. 
sl@0
  1066
Specifically:KErrNotFound if the table does not exist in the database.KErrAccessDenied 
sl@0
  1067
if an incremental operation is in progress. This can also be one of the DBMS 
sl@0
  1068
database error codes. 
sl@0
  1069
sl@0
  1070
@capability Note For a secure shared database, the caller must satisfy either the read
sl@0
  1071
            or the write access policy for the table.
sl@0
  1072
*/
sl@0
  1073
EXPORT_C TInt RDbTable::Open(RDbDatabase &aDatabase,const TDesC &aName,TAccess anAccess)
sl@0
  1074
	{
sl@0
  1075
	TRAPD(r,iCursor=aDatabase.iDatabase->TableL(aName,anAccess));
sl@0
  1076
	return r;
sl@0
  1077
	}
sl@0
  1078
sl@0
  1079
/** Sets the specified index as the active index for this table. The rows will 
sl@0
  1080
be presented in index order, and this index key will be used for lookup by 
sl@0
  1081
the SeekL() function.
sl@0
  1082
sl@0
  1083
If successful, the rowset is reset to the beginning.
sl@0
  1084
sl@0
  1085
@param anIndex The name of the index to activate.
sl@0
  1086
@return KErrNone, if successful, otherwise one of the system-wide error codes. 
sl@0
  1087
Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound 
sl@0
  1088
if the index does not exist on the table. This can also be one of the DBMS 
sl@0
  1089
database error codes. 
sl@0
  1090
sl@0
  1091
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
  1092
            access policy for the table.
sl@0
  1093
*/
sl@0
  1094
EXPORT_C TInt RDbTable::SetIndex(const TDesC* anIndex)
sl@0
  1095
	{
sl@0
  1096
	TRAPD(r,iCursor->SetIndexL(anIndex));
sl@0
  1097
	return r;
sl@0
  1098
	}
sl@0
  1099
sl@0
  1100
/** Finds a row in a table based on a key in the active index.
sl@0
  1101
sl@0
  1102
This function cannot be called while the rowset is currently updating or inserting 
sl@0
  1103
a row. The currently active index on the table must have a key definition 
sl@0
  1104
which matches the types in the key value.
sl@0
  1105
sl@0
  1106
Less columns can be added to the key than are present in the index definition: 
sl@0
  1107
the keys will only be compared up to the columns present further columns 
sl@0
  1108
in the index are not considered.
sl@0
  1109
sl@0
  1110
If successful the cursor is positioned to the row which was found, otherwise 
sl@0
  1111
the cursor is left on an invalid row.
sl@0
  1112
sl@0
  1113
The underlying Store database can leave with KErrWrite, if the table was created 
sl@0
  1114
with insert-only access.
sl@0
  1115
sl@0
  1116
The function can also leave with one of the DBMS database error codes.
sl@0
  1117
sl@0
  1118
@param aKey The key value to lookup in the index.
sl@0
  1119
@param aComparison The comparison operation for the lookup, the default is 
sl@0
  1120
to look for an exact match (EEqualTo).
sl@0
  1121
@return ETrue if a row which compares correctly with the key exists, EFalse if 
sl@0
  1122
not. 
sl@0
  1123
sl@0
  1124
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
  1125
            access policy for the table.
sl@0
  1126
*/
sl@0
  1127
EXPORT_C TBool RDbTable::SeekL(const TDbSeekKey& aKey,TComparison aComparison)
sl@0
  1128
	{
sl@0
  1129
	__ASSERT_ALWAYS(aKey.iKey.Count()>0,Panic(EDbNoColumnsInSeekKey));
sl@0
  1130
	return iCursor->SeekL(aKey.iKey,aComparison);
sl@0
  1131
	}
sl@0
  1132
sl@0
  1133
// Class CDbCursor
sl@0
  1134
sl@0
  1135
//
sl@0
  1136
// Default implementation in terms of ColumnDef. Might be inefficient
sl@0
  1137
//
sl@0
  1138
EXPORT_C void CDbCursor::ColumnsL(CDbColSet& aColSet)
sl@0
  1139
	{
sl@0
  1140
	TDbCol col;
sl@0
  1141
	TDbColNo max=ColumnCount();
sl@0
  1142
	for (TDbColNo ii=0;++ii<=max;)
sl@0
  1143
		{
sl@0
  1144
		ColumnDef(col,ii);
sl@0
  1145
		aColSet.AddL(col);
sl@0
  1146
		}
sl@0
  1147
	}
sl@0
  1148
sl@0
  1149
//
sl@0
  1150
// Default implementation in terms of navigation
sl@0
  1151
// Faster counting may be possible
sl@0
  1152
//
sl@0
  1153
EXPORT_C TInt CDbCursor::CountL(RDbRowSet::TAccuracy)
sl@0
  1154
	{
sl@0
  1155
	TDbBookmark::TMark mark;
sl@0
  1156
	Bookmark(mark);
sl@0
  1157
	GotoL(RDbRowSet::EBeginning);
sl@0
  1158
	TInt count=0;
sl@0
  1159
	while (GotoL(RDbRowSet::ENext))
sl@0
  1160
		++count;
sl@0
  1161
	GotoL(mark);
sl@0
  1162
	return count;
sl@0
  1163
	}
sl@0
  1164
sl@0
  1165
//
sl@0
  1166
//  Default implementation in terms of constraints
sl@0
  1167
//
sl@0
  1168
EXPORT_C TInt CDbCursor::FindL(RDbRowSet::TDirection aDirection,const TDbQuery& aCriteria)
sl@0
  1169
	{
sl@0
  1170
	CDbRowConstraint* constraint=ConstraintL(aCriteria);
sl@0
  1171
	constraint->PushL();
sl@0
  1172
	RDbRowSet::TPosition next=aDirection==RDbRowSet::EForwards ? RDbRowSet::ENext : RDbRowSet::EPrevious;
sl@0
  1173
	TInt skip=0;
sl@0
  1174
	do
sl@0
  1175
		{
sl@0
  1176
		if (MatchL(*constraint))
sl@0
  1177
			{
sl@0
  1178
			CleanupStack::PopAndDestroy();	// constraint
sl@0
  1179
			return skip;
sl@0
  1180
			}
sl@0
  1181
		++skip;
sl@0
  1182
		} while (GotoL(next));
sl@0
  1183
	CleanupStack::PopAndDestroy();
sl@0
  1184
	return KErrNotFound;
sl@0
  1185
	}
sl@0
  1186
sl@0
  1187
TInt CDbCursor::Evaluate()
sl@0
  1188
	{
sl@0
  1189
	TRAPD(r,r=EvaluateL());
sl@0
  1190
	return r;
sl@0
  1191
	}
sl@0
  1192
sl@0
  1193
CDbRowConstraint* CDbCursor::ConstraintL(const TDbQuery& aQuery)
sl@0
  1194
	{
sl@0
  1195
	return AttachContext(this,OpenConstraintL(aQuery));
sl@0
  1196
	}
sl@0
  1197
sl@0
  1198
//
sl@0
  1199
// Reserved for future development
sl@0
  1200
//
sl@0
  1201
EXPORT_C void CDbCursor::Reserved_1()
sl@0
  1202
	{
sl@0
  1203
	}
sl@0
  1204
sl@0
  1205
//
sl@0
  1206
// Reserved for future development
sl@0
  1207
//
sl@0
  1208
EXPORT_C void CDbCursor::Reserved_2()
sl@0
  1209
	{
sl@0
  1210
	}