First public contribution.
1 // Copyright (c) 2008-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.
16 #ifndef __SQLSRVBLOB_H__
17 #define __SQLSRVBLOB_H__
21 //Forward declarations
25 Stream buffer class with no intermediate buffering capabilities.
27 The primary purpose of this class is:
28 - to read/write from/to a blob column using sqlite3_blob_read()/sqlite3_blob_write() SQLite functions;
29 - to serve as an IPC buffer for streaming the blob content from/to the client side dll;
31 The class overrides the following virtual MStreamBuf functions:
40 NONSHARABLE_CLASS(HBlobBuf) : public MStreamBuf
50 static HBlobBuf* NewL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode);
54 void ConstructL(sqlite3* aDb, const TDesC8& aDbName, const TDesC8& aTableName, const TDesC8& aColumnName, TInt64 aRowId, TMode aMode);
56 virtual void DoRelease();
57 virtual void DoSynchL();
58 virtual TInt DoReadL(TAny* aPtr, TInt aMaxLength);
59 virtual void DoWriteL(const TAny* aPtr, TInt aLength);
60 virtual TStreamPos DoSeekL(MStreamBuf::TMark aMark, TStreamLocation aLocation, TInt aOffset);
62 sqlite3_blob* BlobHandleL();
65 sqlite3_blob* iBlobHandle;
72 #endif//__SQLSRVBLOB_H__