os/persistentdata/persistentstorage/sql/SRC/Client/SqlStream.cpp
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) 2006-2010 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 <sqldb.h>					//RSqlColumnReadStream, RSqlParamWriteStream
sl@0
    17
#include "SqlStatementImpl.h"		//CSqlStatementImpl
sl@0
    18
#include "OstTraceDefinitions.h"
sl@0
    19
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    20
#include "SqlStreamTraces.h"
sl@0
    21
#endif
sl@0
    22
#include "SqlTraceDef.h"
sl@0
    23
sl@0
    24
////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    25
/////////////////////         RSqlColumnReadStream              ////////////////////////////////////
sl@0
    26
////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    27
sl@0
    28
/**
sl@0
    29
Gives access to column data as a read-only stream of characters,
sl@0
    30
sl@0
    31
The function can only be used for text and binary column types.
sl@0
    32
sl@0
    33
@param aStmt        The RSqlStatement object to which the referred column belongs.
sl@0
    34
@param aColumnIndex The index value identifying the column; this is 0 for the first column.
sl@0
    35
sl@0
    36
@return KErrNone, the text column data stream has been opened successfully;
sl@0
    37
        KErrNoMemory, an out of memory condition occurred;
sl@0
    38
        KErrArgument, the column type is neither text nor binary.
sl@0
    39
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
    40
                      other system-wide error codes may also be returned.
sl@0
    41
sl@0
    42
@capability None
sl@0
    43
*/
sl@0
    44
EXPORT_C TInt RSqlColumnReadStream::ColumnText(RSqlStatement& aStmt, TInt aColumnIndex)
sl@0
    45
	{
sl@0
    46
	SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNTEXT_ENTRY, "Entry;0x%X;RSqlColumnReadStream::ColumnText;aStmt=0x%X;aColumnIndex=%d", (TUint)this, (TUint)&aStmt, aColumnIndex));
sl@0
    47
	TRAPD(err, Attach(aStmt.Impl().ColumnSourceL(aColumnIndex)));
sl@0
    48
    SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNTEXT_EXIT, "Exit;0x%X;RSqlColumnReadStream::ColumnText;err=%d", (TUint)this, err));
sl@0
    49
	return err;
sl@0
    50
	}
sl@0
    51
	
sl@0
    52
/**
sl@0
    53
Gives access to column data as a read-only stream of bytes.
sl@0
    54
sl@0
    55
The function can only be used for text and binary column types.
sl@0
    56
sl@0
    57
@param aStmt        The RSqlStatement object to which the referred column belongs.
sl@0
    58
@param aColumnIndex The index value identifying the column; this is 0 for the first column.
sl@0
    59
sl@0
    60
@return KErrNone, the text column data stream has been opened successfully;
sl@0
    61
        KErrNoMemory, an out of memory condition occurred;
sl@0
    62
        KErrArgument, the column type is neither text nor binary.
sl@0
    63
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
    64
                      other system-wide error codes may also be returned.
sl@0
    65
sl@0
    66
@capability None
sl@0
    67
*/
sl@0
    68
EXPORT_C TInt RSqlColumnReadStream::ColumnBinary(RSqlStatement& aStmt, TInt aColumnIndex)
sl@0
    69
	{
sl@0
    70
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNBINARY_ENTRY, "Entry;0x%X;RSqlColumnReadStream::ColumnBinary;aStmt=0x%X;aColumnIndex=%d", (TUint)this, (TUint)&aStmt, aColumnIndex));
sl@0
    71
	TRAPD(err, Attach(aStmt.Impl().ColumnSourceL(aColumnIndex)));
sl@0
    72
    SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNBINARY_EXIT, "Exit;0x%X;RSqlColumnReadStream::ColumnBinary;err=%d", (TUint)this, err));
sl@0
    73
	return err;
sl@0
    74
	}
sl@0
    75
sl@0
    76
/**
sl@0
    77
Gives access to column data as a read-only stream of characters,
sl@0
    78
sl@0
    79
The function can only be used for text and binary column types.
sl@0
    80
sl@0
    81
@param aStmt        The RSqlStatement object to which the referred column belongs.
sl@0
    82
@param aColumnIndex The index value identifying the column; this is 0 for the first column.
sl@0
    83
sl@0
    84
@leave  KErrNoMemory, an out of memory condition occurred;
sl@0
    85
        KErrArgument, the column type is neither text nor binary.
sl@0
    86
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
    87
                      other system-wide error codes may also be returned.
sl@0
    88
sl@0
    89
@capability None
sl@0
    90
*/
sl@0
    91
EXPORT_C void RSqlColumnReadStream::ColumnTextL(RSqlStatement& aStmt, TInt aColumnIndex)
sl@0
    92
	{
sl@0
    93
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNTEXTL_ENTRY, "Entry;0x%X;RSqlColumnReadStream::ColumnTextL;aStmt=0x%X;aColumnIndex=%d", (TUint)this, (TUint)&aStmt, aColumnIndex));
sl@0
    94
	Attach(aStmt.Impl().ColumnSourceL(aColumnIndex));
sl@0
    95
    SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNTEXTL_EXIT, "Exit;0x%X;RSqlColumnReadStream::ColumnTextL", (TUint)this));
sl@0
    96
	}
sl@0
    97
	
sl@0
    98
/**
sl@0
    99
Gives access to column data as a read-only stream of bytes.
sl@0
   100
sl@0
   101
The function can only be used for text and binary column types.
sl@0
   102
sl@0
   103
@param aStmt        The RSqlStatement object to which the referred column belongs.
sl@0
   104
@param aColumnIndex The index value identifying the column; this is 0 for the first column.
sl@0
   105
sl@0
   106
@leave  KErrNoMemory, an out of memory condition occurred;
sl@0
   107
        KErrArgument, the column type is neither text nor binary.
sl@0
   108
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
   109
                      other system-wide error codes may also be returned.
sl@0
   110
sl@0
   111
@capability None
sl@0
   112
*/
sl@0
   113
EXPORT_C void RSqlColumnReadStream::ColumnBinaryL(RSqlStatement& aStmt, TInt aColumnIndex)
sl@0
   114
	{
sl@0
   115
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNBINARYL_ENTRY, "Entry;0x%X;RSqlColumnReadStream::ColumnBinaryL;aStmt=0x%X;aColumnIndex=%d", (TUint)this, (TUint)&aStmt, aColumnIndex));
sl@0
   116
	Attach(aStmt.Impl().ColumnSourceL(aColumnIndex));
sl@0
   117
    SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLCOLUMNREADSTREAM_COLUMNBINARYL_EXIT, "Exit;0x%X;RSqlColumnReadStream::ColumnBinaryL", (TUint)this));
sl@0
   118
	}
sl@0
   119
sl@0
   120
////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   121
/////////////////////         RSqlParamWriteStream              ////////////////////////////////////
sl@0
   122
////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   123
sl@0
   124
/**
sl@0
   125
Gives access to parameter data as a stream of characters.
sl@0
   126
sl@0
   127
NB You need to close the stream after the execution of the statement operation for
sl@0
   128
which the parameter is set (RSqlStatement::Next() or RSqlStatement::Exec()).
sl@0
   129
sl@0
   130
@param aStmt           The RSqlStatement object to which the referred parameter belongs.
sl@0
   131
@param aParameterIndex The index value identifying the parameter; this is 0 for the first parameter.
sl@0
   132
sl@0
   133
@return KErrNone, the binary parameter data stream has been opened successfully;
sl@0
   134
        KErrNoMemory, an out of memory condition occurred.
sl@0
   135
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
   136
                      other system-wide error codes may also be returned.
sl@0
   137
sl@0
   138
@see RSqlStatement::Next()
sl@0
   139
@see RSqlStatement::Exec()
sl@0
   140
sl@0
   141
@capability None
sl@0
   142
*/
sl@0
   143
EXPORT_C TInt RSqlParamWriteStream::BindText(RSqlStatement& aStmt, TInt aParameterIndex)
sl@0
   144
	{
sl@0
   145
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDTEXT_ENTRY, "Entry;0x%X;RSqlParamWriteStream::BindText;aStmt=0x%X;aParameterIndex=%d", (TUint)this, (TUint)&aStmt, aParameterIndex));
sl@0
   146
	TRAPD(err, Attach(aStmt.Impl().ParamSinkL(ESqlSrvStmtTxtParamSink16, aParameterIndex)));
sl@0
   147
    SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDTEXT_EXIT, "Exit;0x%X;RSqlParamWriteStream::BindText;err=%d", (TUint)this, err));
sl@0
   148
	return err;
sl@0
   149
	}
sl@0
   150
	
sl@0
   151
/**
sl@0
   152
Gives access to parameter data as a stream of bytes.
sl@0
   153
sl@0
   154
NB You need to close the stream after the execution of the statement operation for
sl@0
   155
which the parameter is set (RSqlStatement::Next() or RSqlStatement::Exec()).
sl@0
   156
sl@0
   157
@param aStmt           The RSqlStatement object to which the referred parameter belongs.
sl@0
   158
@param aParameterIndex The index value identifying the parameter; this is 0 for the first parameter.
sl@0
   159
sl@0
   160
@return KErrNone, the binary parameter data stream has been opened successfully;
sl@0
   161
        KErrNoMemory, an out of memory condition occurred.
sl@0
   162
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
   163
                      other system-wide error codes may also be returned.
sl@0
   164
sl@0
   165
@see RSqlStatement::Next()
sl@0
   166
@see RSqlStatement::Exec()
sl@0
   167
sl@0
   168
@capability None
sl@0
   169
*/
sl@0
   170
EXPORT_C TInt RSqlParamWriteStream::BindBinary(RSqlStatement& aStmt, TInt aParameterIndex)
sl@0
   171
	{
sl@0
   172
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDBINARY_ENTRY, "Entry;0x%X;RSqlParamWriteStream::BindBinary;aStmt=0x%X;aParameterIndex=%d", (TUint)this, (TUint)&aStmt, aParameterIndex));
sl@0
   173
	TRAPD(err, Attach(aStmt.Impl().ParamSinkL(ESqlSrvStmtBinParamSink, aParameterIndex)));
sl@0
   174
    SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDBINARY_EXIT, "Exit;0x%X;RSqlParamWriteStream::BindBinary;err=%d", (TUint)this, err));
sl@0
   175
	return err;
sl@0
   176
	}
sl@0
   177
sl@0
   178
/**
sl@0
   179
Gives access to parameter data as a stream of characters.
sl@0
   180
sl@0
   181
NB You need to close the stream after the execution of the statement operation for
sl@0
   182
which the parameter is set (RSqlStatement::Next() or RSqlStatement::Exec()).
sl@0
   183
sl@0
   184
@param aStmt           The RSqlStatement object to which the referred parameter belongs.
sl@0
   185
@param aParameterIndex The index value identifying the parameter; this is 0 for the first parameter.
sl@0
   186
sl@0
   187
@leave KErrNoMemory, an out of memory condition occurred.
sl@0
   188
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
   189
                      other system-wide error codes may also be returned.
sl@0
   190
sl@0
   191
@see RSqlStatement::Next()
sl@0
   192
@see RSqlStatement::Exec()
sl@0
   193
sl@0
   194
@capability None
sl@0
   195
*/
sl@0
   196
EXPORT_C void RSqlParamWriteStream::BindTextL(RSqlStatement& aStmt, TInt aParameterIndex)
sl@0
   197
	{
sl@0
   198
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDTEXTL_ENTRY, "Entry;0x%X;RSqlParamWriteStream::BindTextL;aStmt=0x%X;aParameterIndex=%d", (TUint)this, (TUint)&aStmt, aParameterIndex));
sl@0
   199
	Attach(aStmt.Impl().ParamSinkL(ESqlSrvStmtTxtParamSink16, aParameterIndex));
sl@0
   200
    SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDTEXTL_EXIT, "Exit;0x%X;RSqlParamWriteStream::BindTextL", (TUint)this));
sl@0
   201
	}
sl@0
   202
	
sl@0
   203
/**
sl@0
   204
Gives access to parameter data as a stream of bytes.
sl@0
   205
sl@0
   206
NB You need to close the stream after the execution of the statement operation for
sl@0
   207
which the parameter is set (RSqlStatement::Next() or RSqlStatement::Exec()).
sl@0
   208
sl@0
   209
@param aStmt           The RSqlStatement object to which the referred parameter belongs.
sl@0
   210
@param aParameterIndex The index value identifying the parameter; this is 0 for the first parameter.
sl@0
   211
sl@0
   212
@leave KErrNoMemory, an out of memory condition occurred.
sl@0
   213
                      Note that database specific errors categorised as ESqlDbError, and
sl@0
   214
                      other system-wide error codes may also be returned.
sl@0
   215
sl@0
   216
@see RSqlStatement::Next()
sl@0
   217
@see RSqlStatement::Exec()
sl@0
   218
sl@0
   219
@capability None
sl@0
   220
*/
sl@0
   221
EXPORT_C void RSqlParamWriteStream::BindBinaryL(RSqlStatement& aStmt, TInt aParameterIndex)
sl@0
   222
	{
sl@0
   223
    SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDBINARYL_ENTRY, "Entry;0x%X;RSqlParamWriteStream::BindBinaryL;aStmt=0x%X;aParameterIndex=%d", (TUint)this, (TUint)&aStmt, aParameterIndex));
sl@0
   224
	Attach(aStmt.Impl().ParamSinkL(ESqlSrvStmtBinParamSink, aParameterIndex));
sl@0
   225
    SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, RSQLPARAMWRITESTREAM_BINDBINARYL_EXIT, "Exit;0x%X;RSqlParamWriteStream::BindBinaryL", (TUint)this));
sl@0
   226
	}
sl@0
   227