1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/pcdbms/inc/D32DBMS.INL Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,727 @@
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 +// Class TDbCol
1.20 +inline TDbCol::TDbCol(const TDesC &aName)
1.21 + : iName(aName)
1.22 + {
1.23 + }
1.24 +
1.25 +/**
1.26 +TDbCol copy constructor.
1.27 +@param aSrcCol This TDbCol object will be constructed as an exact copy of aSrcCol object.
1.28 +*/
1.29 +inline TDbCol::TDbCol(const TDbCol& aSrcCol) :
1.30 + iType(aSrcCol.iType),
1.31 + iMaxLength(aSrcCol.iMaxLength),
1.32 + iAttributes(aSrcCol.iAttributes),
1.33 + iName(static_cast <const TDesC&> (aSrcCol.iName))
1.34 + {
1.35 + }
1.36 +
1.37 +/**
1.38 +TDbCol "=" operator.
1.39 +@param aSrcCol This TDbCol object will be made to be an exact copy of aSrcCol object.
1.40 +*/
1.41 +inline TDbCol& TDbCol::operator=(const TDbCol& aSrcCol)
1.42 + {
1.43 + iType = aSrcCol.iType;
1.44 + iMaxLength = aSrcCol.iMaxLength;
1.45 + iAttributes = aSrcCol.iAttributes;
1.46 + iName = static_cast <const TDesC&> (aSrcCol.iName);
1.47 + return *this;
1.48 + }
1.49 +
1.50 +/** Tests if a column is of the Long column type, i.e. one of the EDbColLongXxxx
1.51 +types.
1.52 +
1.53 +@param aType The column type to test.
1.54 +@return ETrue if the aType is a Long column type, EFalse otherwise. */
1.55 +inline TBool TDbCol::IsLong(TDbColType aType)
1.56 + {
1.57 + return aType>=EDbColLongText8;
1.58 + }
1.59 +
1.60 +// Class CDbColSet
1.61 +/** Returns the number of column definitions in the set.
1.62 +
1.63 +Note that using a TDbColSetIter is another way to iterate through the contents
1.64 +of a CDbColSet.
1.65 +
1.66 +@return The number of columns in the columns set. */
1.67 +inline TInt CDbColSet::Count() const
1.68 + {
1.69 + return iColumns.Count();
1.70 + }
1.71 +
1.72 +/** Removes all of the columns from the column set. */
1.73 +inline void CDbColSet::Clear()
1.74 + {
1.75 + iColumns.Reset();
1.76 + }
1.77 +
1.78 +/** Returns a column definition by its ordinal number in the set.
1.79 +
1.80 +Note that using a TDbColSetIter is another way to iterate through the contents
1.81 +of a CDbColSet.
1.82 +
1.83 +@param aCol The ordinal number of the column in the set. Columns in a column
1.84 +set are numbered from 1 to Count(), unlike Symbian OS array classes. Ordinal
1.85 +0 is reserved to represent the invalid column number KDbNullColNo.
1.86 +@return The column definition requested. */
1.87 +inline const TDbCol& CDbColSet::operator[](TDbColNo aCol) const
1.88 + {
1.89 + return iColumns[aCol-1];// 1-based column ids
1.90 + }
1.91 +
1.92 +// Class TDbColSetIter
1.93 +inline TDbColSetIter::operator TAny* () const
1.94 + {
1.95 + return CONST_CAST(TDbCol*,iColumn);
1.96 + }
1.97 +
1.98 +/** Dereferences the iterator on the current column definition.
1.99 +
1.100 +@return A const reference to the current column definition. */
1.101 +inline const TDbCol& TDbColSetIter::operator*() const
1.102 + {
1.103 + __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
1.104 + return *iColumn;
1.105 + }
1.106 +
1.107 +/** Gets a member of the currently referenced column definition. This enables the
1.108 +use of the following constructs:
1.109 +
1.110 +if (iter->iType==EDbColText && iter->iMaxLength<50)
1.111 +
1.112 +@return A const pointer to the current column definition. */
1.113 +inline const TDbCol* TDbColSetIter::operator->() const
1.114 + {
1.115 + __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
1.116 + return iColumn;
1.117 + }
1.118 +
1.119 +/** Returns a column ordinal in the set for the currently referenced column definition.
1.120 +
1.121 +@return The column ordinal of the current column definition. */
1.122 +inline TDbColNo TDbColSetIter::Col() const
1.123 + {
1.124 + __ASSERT_DEBUG(iIndex<iArray->Count(),User::Invariant());
1.125 + return iIndex+1;
1.126 + }
1.127 +
1.128 +/** Moves the iterator to the next column in the set post increment operator.
1.129 +
1.130 +Note that this is implemented in terms of the pre-increment operator, and
1.131 +is less efficient.
1.132 +
1.133 +@param Unused: required for the C++ compiler to resolve the ambiguity with
1.134 +the pre-increment operator.
1.135 +@return A copy of this iterator, referring to the column definition before
1.136 +the increment operation is performed. */
1.137 +inline TDbColSetIter TDbColSetIter::operator++(TInt)
1.138 + {
1.139 + TDbColSetIter tmp(*this);
1.140 + ++(*this);
1.141 + return tmp;
1.142 + }
1.143 +
1.144 +/**
1.145 +TDbKeyCol copy constructor.
1.146 +@param aSrcKeyCol This TDbKeyCol object will be constructed as an exact copy of aSrcKeyCol object.
1.147 +*/
1.148 +inline TDbKeyCol::TDbKeyCol(const TDbKeyCol& aSrcKeyCol) :
1.149 + iOrder(aSrcKeyCol.iOrder),
1.150 + iLength(aSrcKeyCol.iLength),
1.151 + iName(static_cast <const TDesC&> (aSrcKeyCol.iName))
1.152 + {
1.153 + }
1.154 +
1.155 +/**
1.156 +TDbKeyCol "=" operator.
1.157 +@param aSrcKeyCol This TDbKeyCol object will be made to be an exact copy of aSrcKeyCol object.
1.158 +*/
1.159 +inline TDbKeyCol& TDbKeyCol::operator=(const TDbKeyCol& aSrcKeyCol)
1.160 + {
1.161 + iOrder = aSrcKeyCol.iOrder;
1.162 + iLength = aSrcKeyCol.iLength;
1.163 + iName = static_cast <const TDesC&> (aSrcKeyCol.iName);
1.164 + return *this;
1.165 + }
1.166 +
1.167 +
1.168 +// Class CDbKey
1.169 +inline TInt CDbKey::Count() const
1.170 + {
1.171 + return iKeys.Count();
1.172 + }
1.173 +
1.174 +/** Returns a key column by its position in the key.
1.175 +
1.176 +@param aCol The position of the column in the key. These are numbered from
1.177 +0 to Count()-1.
1.178 +@return The key column requested. */
1.179 +inline const TDbKeyCol& CDbKey::operator[](TInt aCol) const
1.180 + {
1.181 + return iKeys[aCol];
1.182 + }
1.183 +
1.184 +/** Makes the key unique. This ensures that every key value in the index is distinct
1.185 +from every other. */
1.186 +inline void CDbKey::MakeUnique()
1.187 + {
1.188 + iAttributes|=EUnique;
1.189 + }
1.190 +
1.191 +/** Tests whether the key is unique.
1.192 +
1.193 +@return ETrue, if the key is unique; EFalse, otherwise. */
1.194 +inline TBool CDbKey::IsUnique() const
1.195 + {
1.196 + return iAttributes&EUnique;
1.197 + }
1.198 +
1.199 +/** Tests whether the key is the primary key.
1.200 +
1.201 +@return ETrue, if the key is unique; EFalse, otherwise. */
1.202 +inline TBool CDbKey::IsPrimary() const
1.203 + {
1.204 + return iAttributes&EPrimary;
1.205 + }
1.206 +
1.207 +/** Sets the way in which Text columns are compared for the key. All Text columns
1.208 +in the key are compared in the same way.
1.209 +
1.210 +@param aComparison The comparison type to use. */
1.211 +inline void CDbKey::SetComparison(TDbTextComparison aComparison)
1.212 + {
1.213 + iComparison=aComparison;
1.214 + }
1.215 +
1.216 +/** Returns the method used to compare Text columns in this key.
1.217 +
1.218 +@return The comparison type used for the key. */
1.219 +inline TDbTextComparison CDbKey::Comparison() const
1.220 + {
1.221 + return iComparison;
1.222 + }
1.223 +
1.224 +inline void CDbKey::MakePrimary()
1.225 + {
1.226 + iAttributes|=EPrimary;
1.227 + }
1.228 +
1.229 +// Class TDbQuery
1.230 +/** Constructs a query object from an SQL string and a text comparison mode.
1.231 +
1.232 +Note that no copy is made of the descriptor passed; it is stored by reference
1.233 +in the query object.
1.234 +
1.235 +@param aQuery The SQL string as a descriptor.
1.236 +@param aComparison The type of text comparison to use in evaluation of the
1.237 +SQL. If not supplied, normal comparison is used. */
1.238 +inline TDbQuery::TDbQuery(const TDesC& aQuery,TDbTextComparison aComparison):
1.239 + iQuery(aQuery),
1.240 + iComparison(aComparison)
1.241 + {
1.242 + }
1.243 +
1.244 +/** Returns the SQL string in the query object.
1.245 +
1.246 +@return A descriptor containing the SQL string. */
1.247 +inline const TDesC& TDbQuery::Query() const
1.248 + {
1.249 + return iQuery;
1.250 + }
1.251 +
1.252 +/** Returns the text comparison mode for the query object.
1.253 +
1.254 +@return The text comparison mode. */
1.255 +inline TDbTextComparison TDbQuery::Comparison() const
1.256 + {
1.257 + return iComparison;
1.258 + }
1.259 +
1.260 +// Class RDbHandleBase
1.261 +inline RDbHandleBase::RDbHandleBase():
1.262 + iObject(0)
1.263 + {
1.264 + }
1.265 +
1.266 +// Class RDbRowSet
1.267 +
1.268 +/** Positions the cursor at the beginning of the rowset.
1.269 +
1.270 +@capability Note For a secure shared database, the caller must satisfy the read
1.271 + access policy for the table.
1.272 +*/
1.273 +inline void RDbRowSet::BeginningL()
1.274 + {
1.275 + GotoL(EBeginning);
1.276 + }
1.277 +
1.278 +/** Positions the cursor at the end of the rowset.
1.279 +
1.280 +@capability Note For a secure shared database, the caller must satisfy the read
1.281 + access policy for the table.
1.282 +*/
1.283 +inline void RDbRowSet::EndL()
1.284 + {
1.285 + GotoL(EEnd);
1.286 + }
1.287 +
1.288 +/** Positions the cursor on the first row in the rowset. If there are no rows,
1.289 +the cursor is positioned at the end.
1.290 +
1.291 +@return ETrue if the cursor is now at a row, EFalse if it is at the end.
1.292 +
1.293 +@capability Note For a secure shared database, the caller must satisfy the read
1.294 + access policy for the table.
1.295 +*/
1.296 +inline TBool RDbRowSet::FirstL()
1.297 + {
1.298 + return GotoL(EFirst);
1.299 + }
1.300 +
1.301 +/** Positions the cursor on the last row in the rowset. If there are no rows, the
1.302 +cursor is positioned at the beginning.
1.303 +
1.304 +@return ETrue if the cursor is now at a row, EFalse if it is at the beginning.
1.305 +
1.306 +@capability Note For a secure shared database, the caller must satisfy the read
1.307 + access policy for the table.
1.308 +*/
1.309 +inline TBool RDbRowSet::LastL()
1.310 + {
1.311 + return GotoL(ELast);
1.312 + }
1.313 +
1.314 +/** Moves the cursor to the next row in the rowset. If there are no more rows,
1.315 +the cursor is positioned to the end.
1.316 +
1.317 +If the cursor is at the beginning prior to the function, it is equivalent
1.318 +to FirstL().
1.319 +
1.320 +@capability Note For a secure shared database, the caller must satisfy the read
1.321 + access policy for the table.
1.322 +*/
1.323 +inline TBool RDbRowSet::NextL()
1.324 + {
1.325 + return GotoL(ENext);
1.326 + }
1.327 +
1.328 +/** Moves the cursor to the previous row in the rowset. If there are no more rows,
1.329 +the cursor is positioned to the beginning.
1.330 +
1.331 +If the cursor is at the end prior to the function, it is equivalent to LastL().
1.332 +
1.333 +@return ETrue if the cursor is now at a row, EFalse if it is at the beginning.
1.334 +
1.335 +@capability Note For a secure shared database, the caller must satisfy the read
1.336 + access policy for the table.
1.337 +*/
1.338 +inline TBool RDbRowSet::PreviousL()
1.339 + {
1.340 + return GotoL(EPrevious);
1.341 + }
1.342 +
1.343 +/** Tests whether a column has the NULL value.
1.344 +
1.345 +Columns which have the NULL value can still be extracted with the correct
1.346 +accessor function, in which case numerical columns will return a 0 (or equivalent)
1.347 +value, and text and binary columns will have a zero length.
1.348 +
1.349 +@param aCol The column ordinal for the column to test.
1.350 +@return ETrue if column aCol is NULL, otherwise EFalse. */
1.351 +inline TBool RDbRowSet::IsColNull(TDbColNo aCol) const
1.352 + {
1.353 + return ColSize(aCol)==0;
1.354 + }
1.355 +
1.356 +/** Extracts a signed integer column value. The type should fit within a TInt.
1.357 +
1.358 +@param aCol The column ordinal of the column to extract.
1.359 +@return The value of column aCol. */
1.360 +inline TInt RDbRowSet::ColInt(TDbColNo aCol) const
1.361 + {
1.362 + return ColInt32(aCol);
1.363 + }
1.364 +
1.365 +/** Extracts an unsigned integer column value.
1.366 +
1.367 +@param aCol The column ordinal of the column to extract.
1.368 +@return The value of column aCol. */
1.369 +inline TUint RDbRowSet::ColUint(TDbColNo aCol) const
1.370 + {
1.371 + return ColUint32(aCol);
1.372 + }
1.373 +
1.374 +/** Extracts a TReal64 column value.
1.375 +
1.376 +@param aCol The column ordinal of the column to extract.
1.377 +@return The value of column aCol. */
1.378 +inline TReal RDbRowSet::ColReal(TDbColNo aCol) const
1.379 + {
1.380 + return ColReal64(aCol);
1.381 + }
1.382 +
1.383 +/** Sets a signed integer column value. The type should fit into a TInt.
1.384 +
1.385 +@param aCol The column ordinal of the column to set.
1.386 +@param aValue The new column value. */
1.387 +inline void RDbRowSet::SetColL(TDbColNo aCol,TInt aValue)
1.388 + {
1.389 + SetColL(aCol, TInt32(aValue));
1.390 + }
1.391 +
1.392 +/** Sets a signed integer column value. The type should fit into a TInt.
1.393 +
1.394 +@param aCol The column ordinal of the column to set.
1.395 +@param aValue The new column value. */
1.396 +inline void RDbRowSet::SetColL(TDbColNo aCol,TUint aValue)
1.397 + {
1.398 + SetColL(aCol,TUint32(aValue));
1.399 + }
1.400 +
1.401 +// Class TDbWindow
1.402 +/** Constructs this object with a size of ENone. This can be used to request a
1.403 +view with no pre-evaluation window. */
1.404 +inline TDbWindow::TDbWindow():
1.405 + iSize(ENone)
1.406 + {
1.407 + }
1.408 +
1.409 +/** Constructs this object with a size of EUnlimited. This is used to request a
1.410 +completely pre-evaluated view. The constant KDbUnlimitedWindow is an instance
1.411 +of such a TDbWindow.
1.412 +
1.413 +@param The argument is only used to direct the compiler to construct an unlimited
1.414 +window. */
1.415 +inline TDbWindow::TDbWindow(TUnlimited):
1.416 + iSize(EUnlimited)
1.417 + {
1.418 + }
1.419 +
1.420 +/** Returns the number of rows stored by the view.
1.421 +
1.422 +@return The number of rows stored by the window. This could be one of the
1.423 +special values ENone or EUnlimited. */
1.424 +inline TInt TDbWindow::Size() const
1.425 + {
1.426 + return iSize;
1.427 + }
1.428 +
1.429 +/** Returns the preferred position in the window of the current row marker. i.e.
1.430 +the position with the forward and backward slots as requested.
1.431 +
1.432 +@return The preferred position in the window. It is undefined if this is not
1.433 +a limited window. */
1.434 +inline TInt TDbWindow::PreferredPos() const
1.435 + {
1.436 + return iPreferredPos;
1.437 + }
1.438 +
1.439 +// Class TUnion
1.440 +template <class T>
1.441 +inline TUnion<T>::operator const T&() const
1.442 + {
1.443 + return *(const T*)&iRep[0];
1.444 + }
1.445 +
1.446 +template <class T>
1.447 +inline const T& TUnion<T>::operator()() const
1.448 + {
1.449 + return *(const T*)&iRep[0];
1.450 + }
1.451 +
1.452 +template <class T>
1.453 +inline T& TUnion<T>::operator()()
1.454 + {
1.455 + return *(T*)&iRep[0];
1.456 + }
1.457 +
1.458 +template <class T>
1.459 +inline void TUnion<T>::Set(const T& aT)
1.460 + {
1.461 + new(&iRep[0]) T(aT);
1.462 + }
1.463 +
1.464 +// Class TDbLookupKey
1.465 +inline TDbLookupKey::TDbLookupKey():
1.466 + iCount(0)
1.467 + {
1.468 + }
1.469 +
1.470 +inline TInt TDbLookupKey::Count() const
1.471 + {
1.472 + return iCount;
1.473 + }
1.474 +
1.475 +inline const TDbLookupKey::SColumn* TDbLookupKey::First() const
1.476 + {
1.477 + return &iKey[0];
1.478 + }
1.479 +
1.480 +// Class TDbSeekKey
1.481 +/** Constructs an empty key value.
1.482 +
1.483 +Add() should be called before the key value is used for lookup. */
1.484 +inline TDbSeekKey::TDbSeekKey():
1.485 + iMaxKeys(1)
1.486 + {
1.487 + }
1.488 +
1.489 +/** Constructs a key value for an TInt8, TInt16 or TInt32 column.
1.490 +
1.491 +@param aKey The key value to lookup. */
1.492 +inline TDbSeekKey::TDbSeekKey(TInt aKey):
1.493 + iMaxKeys(1)
1.494 + {
1.495 + Add(aKey);
1.496 + }
1.497 +
1.498 +/** Constructs a key value for a Bit, TUint8, TUint16 or TUint32 column.
1.499 +
1.500 +@param aKey The key value to lookup. */
1.501 +inline TDbSeekKey::TDbSeekKey(TUint aKey):
1.502 + iMaxKeys(1)
1.503 + {
1.504 + Add(aKey);
1.505 + }
1.506 +
1.507 +inline TDbSeekKey::TDbSeekKey(TInt64 aKey):
1.508 + iMaxKeys(1)
1.509 + {
1.510 + Add(aKey);
1.511 + }
1.512 +
1.513 +/** Constructs a key value for a TReal32 column.
1.514 +
1.515 +@param aKey The key value to lookup. */
1.516 +inline TDbSeekKey::TDbSeekKey(TReal32 aKey):
1.517 + iMaxKeys(1)
1.518 + {
1.519 + Add(aKey);
1.520 + }
1.521 +
1.522 +/** Construct a key value for a TReal64 column.
1.523 +
1.524 +@param aKey The key value to lookup. */
1.525 +inline TDbSeekKey::TDbSeekKey(TReal64 aKey):
1.526 + iMaxKeys(1)
1.527 + {
1.528 + Add(aKey);
1.529 + }
1.530 +
1.531 +/** Constructs a key value for a TDateTime column.
1.532 +
1.533 +@param aKey The key value to lookup. */
1.534 +inline TDbSeekKey::TDbSeekKey(TTime aKey):
1.535 + iMaxKeys(1)
1.536 + {
1.537 + Add(aKey);
1.538 + }
1.539 +
1.540 +/** Constructs a key value for a non-Unicode text column.
1.541 +
1.542 +Note that the seek key does not copy the text data contained by the descriptor.
1.543 +This needs to be retained until the seek key is no longer required.
1.544 +
1.545 +@param aKey The key value to lookup. */
1.546 +inline TDbSeekKey::TDbSeekKey(const TDesC8& aKey):
1.547 + iMaxKeys(1)
1.548 + {
1.549 + Add(aKey);
1.550 + }
1.551 +
1.552 +/** Constructs a key value for a Unicode text column.
1.553 +
1.554 +Note that the seek key does not copy the text data contained by the descriptor.
1.555 +This needs to be retained until the seek key is no longer required.
1.556 +
1.557 +@param aKey The key value to lookup. */
1.558 +inline TDbSeekKey::TDbSeekKey(const TDesC16& aKey):
1.559 + iMaxKeys(1)
1.560 + {
1.561 + Add(aKey);
1.562 + }
1.563 +
1.564 +inline TDbSeekKey::TDbSeekKey(TInt aKeys,TInt):
1.565 + iMaxKeys(aKeys)
1.566 + {
1.567 + }
1.568 +
1.569 +// Class TDbSeekMultiKey
1.570 +/** Constructs an empty multi-column key value. */
1.571 +template <TInt S>
1.572 +inline TDbSeekMultiKey<S>::TDbSeekMultiKey():
1.573 + TDbSeekKey(S,0)
1.574 + {
1.575 + }
1.576 +
1.577 +// Class RDbTable
1.578 +/** Sets the specified index as the active index for this table. The rows will
1.579 +be presented in index order, and this index key will be used for lookup by
1.580 +the SeekL() function.
1.581 +
1.582 +If successful, the rowset is reset to the beginning.
1.583 +
1.584 +@param anIndex The name of the index to activate.
1.585 +@return KErrNone, if successful, otherwise one of the system-wide error codes.
1.586 +Specifically:KErrWrite if the table was created with insert-only access.KErrNotFound
1.587 +if the index does not exist on the table. This can also be one of the DBMS
1.588 +database error codes.
1.589 +
1.590 +@capability Note For a secure shared database, the caller must satisfy the read
1.591 + access policy for the table.
1.592 +*/
1.593 +inline TInt RDbTable::SetIndex(const TDesC& anIndex)
1.594 + {
1.595 + return SetIndex(&anIndex);
1.596 + }
1.597 +
1.598 +/** Sets the ordering to be the underlying ordering of the rows — this will
1.599 +usually provide faster navigation of the rowset.
1.600 +
1.601 +@return KErrNone, if successful, otherwise one of the system-wide error codes.
1.602 +Specifically:KErrWrite if the table was created with insert-only access. This
1.603 +can also be one of the DBMS database error codes.
1.604 +
1.605 +@capability Note For a secure shared database, the caller must satisfy the read
1.606 + access policy for the table.
1.607 +*/
1.608 +inline TInt RDbTable::SetNoIndex()
1.609 + {
1.610 + return SetIndex(0);
1.611 + }
1.612 +
1.613 +/** Constructs this object by invoking the matching constructor for RWriteStream.
1.614 +
1.615 +@param anExternalizer Specifies an externaliser */
1.616 +inline RDbColWriteStream::RDbColWriteStream(const MExternalizer<TStreamRef> &anExternalizer):
1.617 + RWriteStream(anExternalizer)
1.618 + {
1.619 + }
1.620 +
1.621 +// Class CDbNames
1.622 +inline TInt CDbNames::Count() const
1.623 + {
1.624 + return iList.Count();
1.625 + }
1.626 +
1.627 +inline const TDesC& CDbNames::operator[](TInt anIndex) const
1.628 + {
1.629 + return iList[anIndex];
1.630 + }
1.631 +
1.632 +// Class RDbDatabase
1.633 +
1.634 +/**
1.635 +Creates a table on the database.
1.636 +
1.637 +@param aName Table name.
1.638 +@param aColSet A set of column definitions which describe the table structure.
1.639 +
1.640 +@return KErrNone The operation has completed successfully;
1.641 + KErrNoMemory, an out of memory condition has occurred;
1.642 + KErrAlreadyExists, a table with that name already exists;
1.643 + KErrArgument, empty column set, duplicated column name, invalid column length;
1.644 + KErrBadName, invalid table name, invalid column name (containing spaces for example);
1.645 + KErrNotSupported, unknown column type, unknown column attributes;
1.646 + KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
1.647 + Note that other system-wide error codes may also be returned.
1.648 +
1.649 +@capability Note For a secure shared database, the caller must satisfy the schema
1.650 + access policy for the database.
1.651 +*/
1.652 +inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet)
1.653 + {
1.654 + return CreateTable(aName,aColSet,NULL);
1.655 + }
1.656 +
1.657 +/**
1.658 +Creates a table on the database.
1.659 +
1.660 +@param aName Table name.
1.661 +@param aColSet A set of column definitions which describe the table structure.
1.662 +@param aPrimaryKey Primary key definition.
1.663 +
1.664 +@return KErrNone The operation has completed successfully;
1.665 + KErrNoMemory, an out of memory condition has occurred;
1.666 + KErrAlreadyExists, a table with that name already exists;
1.667 + KErrArgument, empty column set, duplicated column name, invalid column length;
1.668 + KErrBadName, invalid table name, invalid column name (containing spaces for example);
1.669 + KErrNotSupported, unknown column type, unknown column attributes;
1.670 + KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
1.671 + Note that other system-wide error codes may also be returned.
1.672 +
1.673 +@capability Note For a secure shared database, the caller must satisfy the schema
1.674 + access policy for the database.
1.675 +*/
1.676 +inline TInt RDbDatabase::CreateTable(const TDesC& aName,const CDbColSet& aColSet,const CDbKey& aPrimaryKey)
1.677 + {
1.678 + return CreateTable(aName,aColSet,&aPrimaryKey);
1.679 + }
1.680 +
1.681 +// Class RDbIncremental
1.682 +/** Initiates the execution of a DDL (SQL schema update) statement on the database.
1.683 +
1.684 +This is the incremental form of RDbDatabase::Execute().
1.685 +
1.686 +Note that to begin executing a DML (SQL data update) statement incrementally,
1.687 +use the RDbUpdate class.
1.688 +
1.689 +@param aDatabase The database on which the DDL (SQL schema update) statement
1.690 +is to execute.
1.691 +@param aSql The DDL SQL statement to be executed on the database.
1.692 +@param aStep On return, contains the initial step count for the incremental
1.693 +operation. This value should be passed in to subsequent calls to Next() to
1.694 +continue the operation.
1.695 +@return KErrNone if successful, otherwise another of the system-wide error
1.696 +codes.
1.697 +@see RDbDatabase::Execute()
1.698 +@see RDbUpdate
1.699 +
1.700 +@capability Note For a secure shared database, the caller must satisfy:
1.701 + - the schema access policy for the database, if the SQL statement is
1.702 + CREATE/DROP/ALTER;
1.703 + - the write access policy for the table in the SQL, if the SQL statement is
1.704 + INSERT/UPDATE/DELETE;
1.705 +*/
1.706 +inline TInt RDbIncremental::Execute(RDbDatabase& aDatabase,const TDesC& aSql,TInt& aStep)
1.707 + {
1.708 + return Execute(aDatabase,aSql,EDbCompareNormal,aStep);
1.709 + }
1.710 +
1.711 +////////////////////////////////////////////////////////////////////////////////////////////
1.712 +// CDbStrings class
1.713 +
1.714 +/**
1.715 +@return The number of elements of the controlled strings array.
1.716 +*/
1.717 +inline TInt CDbStrings::Count() const
1.718 + {
1.719 + return iList.Count();
1.720 + }
1.721 +
1.722 +/**
1.723 +Allows access to "aIndex" element of the controlled strings array.
1.724 +@return "aIndex" element of the controlled strings array.
1.725 +*/
1.726 +inline const TDesC& CDbStrings::operator[](TInt aIndex) const
1.727 + {
1.728 + return iList[aIndex];
1.729 + }
1.730 +