Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 void RDbTableRow::Open(CDbTable* aTable)
22 // Initialise the row buffer for using the table
28 iMark.Construct(aTable->Generation());
31 void RDbTableRow::Close()
38 EXPORT_C void RDbTableRow::ReadL(TDbRecordId aRecordId)
40 if (aRecordId==KDbNullRecordId)
46 else if (aRecordId!=iRecord || iMark.Changed())
49 iRecord=KDbNullRecordId;
50 iTable->ReadRowL(*this,aRecordId);
56 void RDbTableRow::NewL(TDbRecordId aCopyRecord)
58 // Set the row buffer for a new row
61 ReadL(aCopyRecord); // copy or empty the row
62 if (aCopyRecord!=KDbNullRecordId)
64 iRecord=KDbNullRecordId;
65 iTable->DuplicateBlobsL(*this); // duplicate any Blobs
67 iTable->NewRowL(*this);
70 void RDbTableRow::PrepareAppendL()
72 iTable->PrepareAppendL(*this);
75 TDbRecordId RDbTableRow::AppendL()
77 iRecord=iTable->AppendRowL(*this);
82 void RDbTableRow::PrepareReplaceL()
85 __LEAVE(KErrAccessDenied);
86 iTable->PrepareReplaceL(*this,iRecord);
89 TDbRecordId RDbTableRow::ReplaceL()
91 iTable->ReplaceRowL(*this,iRecord);
96 void RDbTableRow::DeleteL(TDbRecordId aRecordId)
98 iTable->DeleteRowL(*this,aRecordId);