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