os/persistentdata/persistentstorage/dbms/inc/D32DBMS.INL
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// Class TDbCol
sl@0
    17
inline TDbCol::TDbCol(const TDesC &aName)
sl@0
    18
	: iName(aName)
sl@0
    19
	{
sl@0
    20
	}
sl@0
    21
sl@0
    22
/**
sl@0
    23
TDbCol copy constructor.
sl@0
    24
@param aSrcCol This TDbCol object will be constructed as an exact copy of aSrcCol object.
sl@0
    25
*/
sl@0
    26
inline TDbCol::TDbCol(const TDbCol& aSrcCol) :
sl@0
    27
	iType(aSrcCol.iType),
sl@0
    28
	iMaxLength(aSrcCol.iMaxLength),
sl@0
    29
	iAttributes(aSrcCol.iAttributes),
sl@0
    30
	iName(static_cast <const TDesC&> (aSrcCol.iName))
sl@0
    31
	{
sl@0
    32
	}
sl@0
    33
	
sl@0
    34
/**
sl@0
    35
TDbCol "=" operator.
sl@0
    36
@param aSrcCol This TDbCol object will be made to be an exact copy of aSrcCol object.
sl@0
    37
*/
sl@0
    38
inline TDbCol& TDbCol::operator=(const TDbCol& aSrcCol)
sl@0
    39
	{
sl@0
    40
	iType = aSrcCol.iType;
sl@0
    41
	iMaxLength = aSrcCol.iMaxLength;
sl@0
    42
	iAttributes = aSrcCol.iAttributes;
sl@0
    43
	iName = static_cast <const TDesC&> (aSrcCol.iName);
sl@0
    44
	return *this;
sl@0
    45
	}
sl@0
    46
sl@0
    47
/** Tests if a column is of the Long column type, i.e. one of the EDbColLongXxxx 
sl@0
    48
types.
sl@0
    49
sl@0
    50
@param aType The column type to test.
sl@0
    51
@return ETrue if the aType is a Long column type, EFalse otherwise. */
sl@0
    52
inline TBool TDbCol::IsLong(TDbColType aType)
sl@0
    53
	{
sl@0
    54
	return aType>=EDbColLongText8;
sl@0
    55
	}
sl@0
    56
sl@0
    57
// Class CDbColSet
sl@0
    58
/** Returns the number of column definitions in the set.
sl@0
    59
sl@0
    60
Note that using a TDbColSetIter is another way to iterate through the contents 
sl@0
    61
of a CDbColSet.
sl@0
    62
sl@0
    63
@return The number of columns in the columns set. */
sl@0
    64
inline TInt CDbColSet::Count() const
sl@0
    65
	{
sl@0
    66
	return iColumns.Count();
sl@0
    67
	}
sl@0
    68
sl@0
    69
/** Removes all of the columns from the column set. */
sl@0
    70
inline void CDbColSet::Clear()
sl@0
    71
	{
sl@0
    72
	iColumns.Reset();
sl@0
    73
	}
sl@0
    74
sl@0
    75
/** Returns a column definition by its ordinal number in the set.
sl@0
    76
sl@0
    77
Note that using a TDbColSetIter is another way to iterate through the contents 
sl@0
    78
of a CDbColSet.
sl@0
    79
sl@0
    80
@param aCol The ordinal number of the column in the set. Columns in a column 
sl@0
    81
set are numbered from 1 to Count(), unlike Symbian OS array classes. Ordinal 
sl@0
    82
0 is reserved to represent the invalid column number KDbNullColNo.
sl@0
    83
@return The column definition requested. */
sl@0
    84
inline const TDbCol& CDbColSet::operator[](TDbColNo aCol) const
sl@0
    85
	{
sl@0
    86
	return iColumns[aCol-1];// 1-based column ids 
sl@0
    87
	}
sl@0
    88
sl@0
    89
// Class TDbColSetIter
sl@0
    90
inline TDbColSetIter::operator TAny* () const
sl@0
    91
	{
sl@0
    92
	return CONST_CAST(TDbCol*,iColumn);
sl@0
    93
	}
sl@0
    94
sl@0
    95
/** Dereferences the iterator on the current column definition.
sl@0
    96
sl@0
    97
@return A const reference to the current column definition. */
sl@0
    98
inline const TDbCol& TDbColSetIter::operator*() const
sl@0
    99
	{
sl@0
   100
	__ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
sl@0
   101
	return *iColumn;
sl@0
   102
	}
sl@0
   103
sl@0
   104
/** Gets a member of the currently referenced column definition. This enables the 
sl@0
   105
use of the following constructs:
sl@0
   106
sl@0
   107
if (iter->iType==EDbColText && iter->iMaxLength<50) 
sl@0
   108
sl@0
   109
@return A const pointer to the current column definition. */
sl@0
   110
inline const TDbCol* TDbColSetIter::operator->() const
sl@0
   111
	{
sl@0
   112
	__ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
sl@0
   113
	return iColumn;
sl@0
   114
	}
sl@0
   115
sl@0
   116
/** Returns a column ordinal in the set for the currently referenced column definition.
sl@0
   117
sl@0
   118
@return The column ordinal of the current column definition. */
sl@0
   119
inline TDbColNo TDbColSetIter::Col() const
sl@0
   120
	{
sl@0
   121
	__ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
sl@0
   122
	return iIndex+1;
sl@0
   123
	}
sl@0
   124
sl@0
   125
/** Moves the iterator to the next column in the set post increment operator.
sl@0
   126
sl@0
   127
Note that this is implemented in terms of the pre-increment operator, and 
sl@0
   128
is less efficient.
sl@0
   129
sl@0
   130
@param Unused: required for the C++ compiler to resolve the ambiguity with 
sl@0
   131
the pre-increment operator.
sl@0
   132
@return A copy of this iterator, referring to the column definition before 
sl@0
   133
the increment operation is performed. */
sl@0
   134
inline TDbColSetIter TDbColSetIter::operator++(TInt)
sl@0
   135
	{
sl@0
   136
	TDbColSetIter tmp(*this);
sl@0
   137
	++(*this);
sl@0
   138
	return tmp;
sl@0
   139
	}
sl@0
   140
sl@0
   141
/**
sl@0
   142
TDbKeyCol copy constructor.
sl@0
   143
@param aSrcKeyCol This TDbKeyCol object will be constructed as an exact copy of aSrcKeyCol object.
sl@0
   144
*/
sl@0
   145
inline TDbKeyCol::TDbKeyCol(const TDbKeyCol& aSrcKeyCol) :
sl@0
   146
	iOrder(aSrcKeyCol.iOrder),
sl@0
   147
	iLength(aSrcKeyCol.iLength),
sl@0
   148
	iName(static_cast <const TDesC&> (aSrcKeyCol.iName))
sl@0
   149
	{
sl@0
   150
	}
sl@0
   151
	
sl@0
   152
/**
sl@0
   153
TDbKeyCol "=" operator.
sl@0
   154
@param aSrcKeyCol This TDbKeyCol object will be made to be an exact copy of aSrcKeyCol object.
sl@0
   155
*/
sl@0
   156
inline TDbKeyCol& TDbKeyCol::operator=(const TDbKeyCol& aSrcKeyCol)
sl@0
   157
	{
sl@0
   158
	iOrder = aSrcKeyCol.iOrder;
sl@0
   159
	iLength = aSrcKeyCol.iLength;
sl@0
   160
	iName = static_cast <const TDesC&> (aSrcKeyCol.iName);
sl@0
   161
	return *this;
sl@0
   162
	}
sl@0
   163
sl@0
   164
sl@0
   165
// Class CDbKey
sl@0
   166
inline TInt CDbKey::Count() const
sl@0
   167
	{
sl@0
   168
	return iKeys.Count();
sl@0
   169
	}
sl@0
   170
sl@0
   171
/** Returns a key column by its position in the key.
sl@0
   172
sl@0
   173
@param aCol The position of the column in the key. These are numbered from 
sl@0
   174
0 to Count()-1.
sl@0
   175
@return The key column requested. */
sl@0
   176
inline const TDbKeyCol& CDbKey::operator[](TInt aCol) const
sl@0
   177
	{
sl@0
   178
	return iKeys[aCol];
sl@0
   179
	}
sl@0
   180
sl@0
   181
/** Makes the key unique. This ensures that every key value in the index is distinct 
sl@0
   182
from every other. */
sl@0
   183
inline void CDbKey::MakeUnique()
sl@0
   184
	{
sl@0
   185
	iAttributes|=EUnique;
sl@0
   186
	}
sl@0
   187
sl@0
   188
/** Tests whether the key is unique.
sl@0
   189
sl@0
   190
@return ETrue, if the key is unique; EFalse, otherwise. */
sl@0
   191
inline TBool CDbKey::IsUnique() const
sl@0
   192
	{
sl@0
   193
	return iAttributes&EUnique;
sl@0
   194
	}
sl@0
   195
sl@0
   196
/** Tests whether the key is the primary key.
sl@0
   197
sl@0
   198
@return ETrue, if the key is unique; EFalse, otherwise. */
sl@0
   199
inline TBool CDbKey::IsPrimary() const
sl@0
   200
	{
sl@0
   201
	return iAttributes&EPrimary;
sl@0
   202
	}
sl@0
   203
sl@0
   204
/** Sets the way in which Text columns are compared for the key. All Text columns 
sl@0
   205
in the key are compared in the same way.
sl@0
   206
sl@0
   207
@param aComparison The comparison type to use. */
sl@0
   208
inline void CDbKey::SetComparison(TDbTextComparison aComparison)
sl@0
   209
	{
sl@0
   210
	iComparison=aComparison;
sl@0
   211
	}
sl@0
   212
sl@0
   213
/** Returns the method used to compare Text columns in this key.
sl@0
   214
sl@0
   215
@return The comparison type used for the key. */
sl@0
   216
inline TDbTextComparison CDbKey::Comparison() const
sl@0
   217
	{
sl@0
   218
	return iComparison;
sl@0
   219
	}
sl@0
   220
sl@0
   221
inline void CDbKey::MakePrimary()
sl@0
   222
	{
sl@0
   223
	iAttributes|=EPrimary;
sl@0
   224
	}
sl@0
   225
sl@0
   226
// Class TDbQuery
sl@0
   227
/** Constructs a query object from an SQL string and a text comparison mode.
sl@0
   228
sl@0
   229
Note that no copy is made of the descriptor passed; it is stored by reference 
sl@0
   230
in the query object.
sl@0
   231
sl@0
   232
@param aQuery The SQL string as a descriptor.
sl@0
   233
@param aComparison The type of text comparison to use in evaluation of the 
sl@0
   234
SQL. If not supplied, normal comparison is used. */
sl@0
   235
inline TDbQuery::TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison):
sl@0
   236
	iQuery(aQuery), 
sl@0
   237
	iComparison(aComparison)
sl@0
   238
	{
sl@0
   239
	}
sl@0
   240
sl@0
   241
/** Returns the SQL string in the query object.
sl@0
   242
sl@0
   243
@return A descriptor containing the SQL string. */
sl@0
   244
inline const TDesC& TDbQuery::Query() const
sl@0
   245
	{
sl@0
   246
	return iQuery;
sl@0
   247
	}
sl@0
   248
sl@0
   249
/** Returns the text comparison mode for the query object.
sl@0
   250
sl@0
   251
@return The text comparison mode. */
sl@0
   252
inline TDbTextComparison TDbQuery::Comparison() const
sl@0
   253
	{
sl@0
   254
	return iComparison;
sl@0
   255
	}
sl@0
   256
sl@0
   257
// Class RDbHandleBase
sl@0
   258
inline RDbHandleBase::RDbHandleBase():
sl@0
   259
	iObject(0)
sl@0
   260
	{
sl@0
   261
	}
sl@0
   262
sl@0
   263
// Class RDbRowSet
sl@0
   264
sl@0
   265
/** Positions the cursor at the beginning of the rowset. 
sl@0
   266
sl@0
   267
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   268
            access policy for the table.
sl@0
   269
*/
sl@0
   270
inline void RDbRowSet::BeginningL()
sl@0
   271
	{
sl@0
   272
	GotoL(EBeginning);
sl@0
   273
	}
sl@0
   274
sl@0
   275
/** Positions the cursor at the end of the rowset. 
sl@0
   276
sl@0
   277
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   278
            access policy for the table.
sl@0
   279
*/
sl@0
   280
inline void RDbRowSet::EndL()
sl@0
   281
	{
sl@0
   282
	GotoL(EEnd);
sl@0
   283
	}
sl@0
   284
sl@0
   285
/** Positions the cursor on the first row in the rowset. If there are no rows, 
sl@0
   286
the cursor is positioned at the end.
sl@0
   287
sl@0
   288
@return ETrue if the cursor is now at a row, EFalse if it is at the end. 
sl@0
   289
sl@0
   290
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   291
            access policy for the table.
sl@0
   292
*/
sl@0
   293
inline TBool RDbRowSet::FirstL()
sl@0
   294
	{
sl@0
   295
	return GotoL(EFirst);
sl@0
   296
	}
sl@0
   297
sl@0
   298
/** Positions the cursor on the last row in the rowset. If there are no rows, the 
sl@0
   299
cursor is positioned at the beginning.
sl@0
   300
sl@0
   301
@return ETrue if the cursor is now at a row, EFalse if it is at the beginning. 
sl@0
   302
sl@0
   303
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   304
            access policy for the table.
sl@0
   305
*/
sl@0
   306
inline TBool RDbRowSet::LastL()
sl@0
   307
	{
sl@0
   308
	return GotoL(ELast);
sl@0
   309
	}
sl@0
   310
sl@0
   311
/** Moves the cursor to the next row in the rowset. If there are no more rows, 
sl@0
   312
the cursor is positioned to the end.
sl@0
   313
sl@0
   314
If the cursor is at the beginning prior to the function, it is equivalent 
sl@0
   315
to FirstL().
sl@0
   316
sl@0
   317
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   318
            access policy for the table.
sl@0
   319
*/
sl@0
   320
inline TBool RDbRowSet::NextL()
sl@0
   321
	{
sl@0
   322
	return GotoL(ENext);
sl@0
   323
	}
sl@0
   324
sl@0
   325
/** Moves the cursor to the previous row in the rowset. If there are no more rows, 
sl@0
   326
the cursor is positioned to the beginning.
sl@0
   327
sl@0
   328
If the cursor is at the end prior to the function, it is equivalent to LastL().
sl@0
   329
sl@0
   330
@return ETrue if the cursor is now at a row, EFalse if it is at the beginning. 
sl@0
   331
sl@0
   332
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   333
            access policy for the table.
sl@0
   334
*/
sl@0
   335
inline TBool RDbRowSet::PreviousL()
sl@0
   336
	{
sl@0
   337
	return GotoL(EPrevious);
sl@0
   338
	}
sl@0
   339
sl@0
   340
/** Tests whether a column has the NULL value.
sl@0
   341
sl@0
   342
Columns which have the NULL value can still be extracted with the correct 
sl@0
   343
accessor function, in which case numerical columns will return a 0 (or equivalent) 
sl@0
   344
value, and text and binary columns will have a zero length.
sl@0
   345
sl@0
   346
@param aCol The column ordinal for the column to test.
sl@0
   347
@return ETrue if column aCol is NULL, otherwise EFalse. */
sl@0
   348
inline TBool RDbRowSet::IsColNull(TDbColNo aCol) const
sl@0
   349
	{
sl@0
   350
	return ColSize(aCol)==0;
sl@0
   351
	}
sl@0
   352
sl@0
   353
/** Extracts a signed integer column value. The type should fit within a TInt.
sl@0
   354
sl@0
   355
@param aCol The column ordinal of the column to extract.
sl@0
   356
@return The value of column aCol. */
sl@0
   357
inline TInt RDbRowSet::ColInt(TDbColNo aCol) const
sl@0
   358
	{
sl@0
   359
	return ColInt32(aCol);
sl@0
   360
	}
sl@0
   361
sl@0
   362
/** Extracts an unsigned integer column value.
sl@0
   363
sl@0
   364
@param aCol The column ordinal of the column to extract.
sl@0
   365
@return The value of column aCol. */
sl@0
   366
inline TUint RDbRowSet::ColUint(TDbColNo aCol) const
sl@0
   367
	{
sl@0
   368
	return ColUint32(aCol);
sl@0
   369
	}
sl@0
   370
sl@0
   371
/** Extracts a TReal64 column value.
sl@0
   372
sl@0
   373
@param aCol The column ordinal of the column to extract.
sl@0
   374
@return The value of column aCol. */
sl@0
   375
inline TReal RDbRowSet::ColReal(TDbColNo aCol) const
sl@0
   376
	{
sl@0
   377
	return ColReal64(aCol);
sl@0
   378
	}
sl@0
   379
sl@0
   380
/** Sets a signed integer column value. The type should fit into a TInt.
sl@0
   381
sl@0
   382
@param aCol The column ordinal of the column to set.
sl@0
   383
@param aValue The new column value. */
sl@0
   384
inline void RDbRowSet::SetColL(TDbColNo aCol,TInt aValue)
sl@0
   385
	{
sl@0
   386
	SetColL(aCol, TInt32(aValue));
sl@0
   387
	}
sl@0
   388
sl@0
   389
/** Sets a signed integer column value. The type should fit into a TInt.
sl@0
   390
sl@0
   391
@param aCol The column ordinal of the column to set.
sl@0
   392
@param aValue The new column value. */
sl@0
   393
inline void RDbRowSet::SetColL(TDbColNo aCol,TUint aValue)
sl@0
   394
	{
sl@0
   395
	SetColL(aCol,TUint32(aValue));
sl@0
   396
	}
sl@0
   397
sl@0
   398
// Class TDbWindow
sl@0
   399
/** Constructs this object with a size of ENone. This can be used to request a 
sl@0
   400
view with no pre-evaluation window. */
sl@0
   401
inline TDbWindow::TDbWindow():
sl@0
   402
	iSize(ENone)
sl@0
   403
	{
sl@0
   404
	}
sl@0
   405
sl@0
   406
/** Constructs this object with a size of EUnlimited. This is used to request a 
sl@0
   407
completely pre-evaluated view. The constant KDbUnlimitedWindow is an instance 
sl@0
   408
of such a TDbWindow.
sl@0
   409
sl@0
   410
@param The argument is only used to direct the compiler to construct an unlimited 
sl@0
   411
window. */
sl@0
   412
inline TDbWindow::TDbWindow(TUnlimited):
sl@0
   413
	iSize(EUnlimited)
sl@0
   414
	{
sl@0
   415
	}
sl@0
   416
sl@0
   417
/** Returns the number of rows stored by the view.
sl@0
   418
sl@0
   419
@return The number of rows stored by the window. This could be one of the 
sl@0
   420
special values ENone or EUnlimited. */
sl@0
   421
inline TInt TDbWindow::Size() const
sl@0
   422
	{
sl@0
   423
	return iSize;
sl@0
   424
	}
sl@0
   425
sl@0
   426
/** Returns the preferred position in the window of the current row marker. i.e. 
sl@0
   427
the position with the forward and backward slots as requested.
sl@0
   428
sl@0
   429
@return The preferred position in the window. It is undefined if this is not 
sl@0
   430
a limited window. */
sl@0
   431
inline TInt TDbWindow::PreferredPos() const
sl@0
   432
	{
sl@0
   433
	return iPreferredPos;
sl@0
   434
	}
sl@0
   435
sl@0
   436
// Class TUnion
sl@0
   437
template <class T>
sl@0
   438
inline TUnion<T>::operator const T&() const
sl@0
   439
	{
sl@0
   440
	return *(const T*)&iRep[0];
sl@0
   441
	}
sl@0
   442
sl@0
   443
template <class T>
sl@0
   444
inline const T& TUnion<T>::operator()() const
sl@0
   445
	{
sl@0
   446
	return *(const T*)&iRep[0];
sl@0
   447
	}
sl@0
   448
sl@0
   449
template <class T>
sl@0
   450
inline T& TUnion<T>::operator()()
sl@0
   451
	{
sl@0
   452
	return *(T*)&iRep[0];
sl@0
   453
	}
sl@0
   454
sl@0
   455
template <class T>
sl@0
   456
inline void TUnion<T>::Set(const T& aT)
sl@0
   457
	{
sl@0
   458
	new(&iRep[0]) T(aT);
sl@0
   459
	}
sl@0
   460
sl@0
   461
// Class TDbLookupKey
sl@0
   462
inline TDbLookupKey::TDbLookupKey(): 
sl@0
   463
	iCount(0)
sl@0
   464
	{
sl@0
   465
	}
sl@0
   466
sl@0
   467
inline TInt TDbLookupKey::Count() const
sl@0
   468
	{
sl@0
   469
	return iCount;
sl@0
   470
	}
sl@0
   471
sl@0
   472
inline const TDbLookupKey::SColumn* TDbLookupKey::First() const
sl@0
   473
	{
sl@0
   474
	return &iKey[0];
sl@0
   475
	}
sl@0
   476
sl@0
   477
// Class TDbSeekKey
sl@0
   478
/** Constructs an empty key value. 
sl@0
   479
sl@0
   480
Add() should be called before the key value is used for lookup. */
sl@0
   481
inline TDbSeekKey::TDbSeekKey(): 
sl@0
   482
	iMaxKeys(1)
sl@0
   483
	{
sl@0
   484
	}
sl@0
   485
sl@0
   486
/** Constructs a key value for an TInt8, TInt16 or TInt32 column.
sl@0
   487
sl@0
   488
@param aKey The key value to lookup. */
sl@0
   489
inline TDbSeekKey::TDbSeekKey(TInt aKey): 
sl@0
   490
	iMaxKeys(1)
sl@0
   491
	{
sl@0
   492
	Add(aKey);
sl@0
   493
	}
sl@0
   494
sl@0
   495
/** Constructs a key value for a Bit, TUint8, TUint16 or TUint32 column.
sl@0
   496
sl@0
   497
@param aKey The key value to lookup. */
sl@0
   498
inline TDbSeekKey::TDbSeekKey(TUint aKey): 
sl@0
   499
	iMaxKeys(1)
sl@0
   500
	{
sl@0
   501
	Add(aKey);
sl@0
   502
	}
sl@0
   503
sl@0
   504
inline TDbSeekKey::TDbSeekKey(TInt64 aKey): 
sl@0
   505
	iMaxKeys(1)
sl@0
   506
	{
sl@0
   507
	Add(aKey);
sl@0
   508
	}
sl@0
   509
sl@0
   510
/** Constructs a key value for a TReal32 column.
sl@0
   511
sl@0
   512
@param aKey The key value to lookup. */
sl@0
   513
inline TDbSeekKey::TDbSeekKey(TReal32 aKey): 
sl@0
   514
	iMaxKeys(1)
sl@0
   515
	{
sl@0
   516
	Add(aKey);
sl@0
   517
	}
sl@0
   518
sl@0
   519
/** Construct a key value for a TReal64 column.
sl@0
   520
sl@0
   521
@param aKey The key value to lookup. */
sl@0
   522
inline TDbSeekKey::TDbSeekKey(TReal64 aKey): 
sl@0
   523
	iMaxKeys(1)
sl@0
   524
	{
sl@0
   525
	Add(aKey);
sl@0
   526
	}
sl@0
   527
sl@0
   528
/** Constructs a key value for a TDateTime column.
sl@0
   529
sl@0
   530
@param aKey The key value to lookup. */
sl@0
   531
inline TDbSeekKey::TDbSeekKey(TTime aKey): 
sl@0
   532
	iMaxKeys(1)
sl@0
   533
	{
sl@0
   534
	Add(aKey);
sl@0
   535
	}
sl@0
   536
sl@0
   537
/** Constructs a key value for a non-Unicode text column.
sl@0
   538
sl@0
   539
Note that the seek key does not copy the text data contained by the descriptor. 
sl@0
   540
This needs to be retained until the seek key is no longer required.
sl@0
   541
sl@0
   542
@param aKey The key value to lookup. */
sl@0
   543
inline TDbSeekKey::TDbSeekKey(const TDesC8& aKey): 
sl@0
   544
	iMaxKeys(1)
sl@0
   545
	{
sl@0
   546
	Add(aKey);
sl@0
   547
	}
sl@0
   548
sl@0
   549
/** Constructs a key value for a Unicode text column.
sl@0
   550
sl@0
   551
Note that the seek key does not copy the text data contained by the descriptor. 
sl@0
   552
This needs to be retained until the seek key is no longer required.
sl@0
   553
sl@0
   554
@param aKey The key value to lookup. */
sl@0
   555
inline TDbSeekKey::TDbSeekKey(const TDesC16& aKey): 
sl@0
   556
	iMaxKeys(1)
sl@0
   557
	{
sl@0
   558
	Add(aKey);
sl@0
   559
	}
sl@0
   560
sl@0
   561
inline TDbSeekKey::TDbSeekKey(TInt aKeys,TInt): 
sl@0
   562
	iMaxKeys(aKeys)
sl@0
   563
	{
sl@0
   564
	}
sl@0
   565
sl@0
   566
// Class TDbSeekMultiKey
sl@0
   567
/** Constructs an empty multi-column key value. */
sl@0
   568
template <TInt S>
sl@0
   569
inline TDbSeekMultiKey<S>::TDbSeekMultiKey(): 
sl@0
   570
	TDbSeekKey(S,0)
sl@0
   571
	{
sl@0
   572
	}
sl@0
   573
sl@0
   574
// Class RDbTable
sl@0
   575
/** Sets the specified index as the active index for this table. The rows will 
sl@0
   576
be presented in index order, and this index key will be used for lookup by 
sl@0
   577
the SeekL() function.
sl@0
   578
sl@0
   579
If successful, the rowset is reset to the beginning.
sl@0
   580
sl@0
   581
@param anIndex The name of the index to activate.
sl@0
   582
@return KErrNone, if successful, otherwise one of the system-wide error codes. 
sl@0
   583
Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound 
sl@0
   584
if the index does not exist on the table. This can also be one of the DBMS 
sl@0
   585
database error codes. 
sl@0
   586
sl@0
   587
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   588
            access policy for the table.
sl@0
   589
*/
sl@0
   590
inline TInt RDbTable::SetIndex(const TDesC& anIndex)
sl@0
   591
	{
sl@0
   592
	return SetIndex(&anIndex);
sl@0
   593
	}
sl@0
   594
sl@0
   595
/** Sets the ordering to be the underlying ordering of the rows — this will 
sl@0
   596
usually provide faster navigation of the rowset.
sl@0
   597
sl@0
   598
@return KErrNone, if successful, otherwise one of the system-wide error codes. 
sl@0
   599
Specifically:KErrWrite if the table was created with insert-only access. This 
sl@0
   600
can also be one of the DBMS database error codes. 
sl@0
   601
sl@0
   602
@capability Note For a secure shared database, the caller must satisfy the read
sl@0
   603
            access policy for the table.
sl@0
   604
*/
sl@0
   605
inline TInt RDbTable::SetNoIndex()
sl@0
   606
	{
sl@0
   607
	return SetIndex(0);
sl@0
   608
	}
sl@0
   609
sl@0
   610
/** Constructs this object by invoking the matching constructor for RWriteStream.
sl@0
   611
sl@0
   612
@param anExternalizer Specifies an externaliser */
sl@0
   613
inline RDbColWriteStream::RDbColWriteStream(const MExternalizer<TStreamRef> &anExternalizer): 
sl@0
   614
	RWriteStream(anExternalizer)
sl@0
   615
	{
sl@0
   616
	}
sl@0
   617
sl@0
   618
// Class CDbNames
sl@0
   619
inline TInt CDbNames::Count() const
sl@0
   620
	{
sl@0
   621
	return iList.Count();
sl@0
   622
	}
sl@0
   623
sl@0
   624
inline const TDesC& CDbNames::operator[](TInt anIndex) const
sl@0
   625
	{
sl@0
   626
	return iList[anIndex];
sl@0
   627
	}
sl@0
   628
sl@0
   629
// Class RDbDatabase
sl@0
   630
sl@0
   631
/**
sl@0
   632
Creates a table on the database.
sl@0
   633
sl@0
   634
@param aName Table name.
sl@0
   635
@param aColSet A set of column definitions which describe the table structure.
sl@0
   636
sl@0
   637
@return KErrNone The operation has completed successfully;
sl@0
   638
        KErrNoMemory, an out of memory condition has occurred;
sl@0
   639
        KErrAlreadyExists, a table with that name already exists;
sl@0
   640
        KErrArgument, empty column set, duplicated column name, invalid column length;
sl@0
   641
        KErrBadName, invalid table name, invalid column name (containing spaces for example);
sl@0
   642
        KErrNotSupported, unknown column type, unknown column attributes;
sl@0
   643
        KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
sl@0
   644
                      Note that other system-wide error codes may also be returned.
sl@0
   645
sl@0
   646
@capability Note For a secure shared database, the caller must satisfy the schema
sl@0
   647
            access policy for the database.
sl@0
   648
*/
sl@0
   649
inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet)
sl@0
   650
	{
sl@0
   651
	return CreateTable(aName,aColSet,NULL);
sl@0
   652
	}
sl@0
   653
sl@0
   654
/**
sl@0
   655
Creates a table on the database.
sl@0
   656
sl@0
   657
@param aName Table name.
sl@0
   658
@param aColSet A set of column definitions which describe the table structure.
sl@0
   659
@param aPrimaryKey Primary key definition.
sl@0
   660
sl@0
   661
@return KErrNone The operation has completed successfully;
sl@0
   662
        KErrNoMemory, an out of memory condition has occurred;
sl@0
   663
        KErrAlreadyExists, a table with that name already exists;
sl@0
   664
        KErrArgument, empty column set, duplicated column name, invalid column length;
sl@0
   665
        KErrBadName, invalid table name, invalid column name (containing spaces for example);
sl@0
   666
        KErrNotSupported, unknown column type, unknown column attributes;
sl@0
   667
        KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
sl@0
   668
                      Note that other system-wide error codes may also be returned.
sl@0
   669
sl@0
   670
@capability Note For a secure shared database, the caller must satisfy the schema
sl@0
   671
            access policy for the database.
sl@0
   672
*/
sl@0
   673
inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey& aPrimaryKey)
sl@0
   674
	{
sl@0
   675
	return CreateTable(aName,aColSet,&aPrimaryKey);
sl@0
   676
	}
sl@0
   677
sl@0
   678
// Class RDbIncremental
sl@0
   679
/** Initiates the execution of a DDL (SQL schema update) statement on the database.
sl@0
   680
sl@0
   681
This is the incremental form of RDbDatabase::Execute().
sl@0
   682
sl@0
   683
Note that to begin executing a DML (SQL data update) statement incrementally, 
sl@0
   684
use the RDbUpdate class.
sl@0
   685
sl@0
   686
@param aDatabase The database on which the DDL (SQL schema update) statement 
sl@0
   687
is to execute.
sl@0
   688
@param aSql The DDL SQL statement to be executed on the database.
sl@0
   689
@param aStep On return, contains the initial step count for the incremental 
sl@0
   690
operation. This value should be passed in to subsequent calls to Next() to 
sl@0
   691
continue the operation.
sl@0
   692
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
   693
codes.
sl@0
   694
@see RDbDatabase::Execute()
sl@0
   695
@see RDbUpdate 
sl@0
   696
sl@0
   697
@capability Note For a secure shared database, the caller must satisfy:
sl@0
   698
            - the schema access policy for the database, if the SQL statement is 
sl@0
   699
			  CREATE/DROP/ALTER; 
sl@0
   700
            - the write access policy for the table in the SQL, if the SQL statement is 
sl@0
   701
			  INSERT/UPDATE/DELETE; 
sl@0
   702
*/
sl@0
   703
inline TInt RDbIncremental::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep)
sl@0
   704
	{
sl@0
   705
	return Execute(aDatabase,aSql,EDbCompareNormal,aStep);
sl@0
   706
	}
sl@0
   707
sl@0
   708
////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   709
// CDbStrings class
sl@0
   710
sl@0
   711
/**
sl@0
   712
@return The number of elements of the controlled strings array.
sl@0
   713
*/
sl@0
   714
inline TInt CDbStrings::Count() const
sl@0
   715
	{
sl@0
   716
	return iList.Count();
sl@0
   717
	}
sl@0
   718
sl@0
   719
/**
sl@0
   720
Allows access to "aIndex" element of the controlled strings array.
sl@0
   721
@return "aIndex" element of the controlled strings array.
sl@0
   722
*/
sl@0
   723
inline const TDesC& CDbStrings::operator[](TInt aIndex) const
sl@0
   724
	{
sl@0
   725
	return iList[aIndex];
sl@0
   726
	}
sl@0
   727