os/persistentdata/persistentstorage/sql/SRC/Client/SqlScalarFullSelect.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.
     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 "SqlAssert.h"			//ESqlPanicInvalidObj, ESqlPanicObjExists
    17 #include "SqlDatabaseImpl.h"	//CSqlDatabaseImpl
    18 #include "OstTraceDefinitions.h"
    19 #ifdef OST_TRACE_COMPILER_IN_USE
    20 #include "SqlScalarFullSelectTraces.h"
    21 #endif
    22 #include "SqlTraceDef.h"
    23 
    24 /**
    25 Returns a reference to the implementation object of RSqlDatabase - CSqlDatabaseImpl.
    26 
    27 @panic SqlDb 2 Create() or Open() has not previously been called on this RSqlDatabase object.
    28 
    29 @internalComponent
    30 */
    31 inline CSqlDatabaseImpl& TSqlScalarFullSelectQuery::Impl() const
    32 	{
    33 	__ASSERT_ALWAYS(iDatabaseImpl != NULL, __SQLPANIC(ESqlPanicInvalidObj));
    34 	return *iDatabaseImpl;	
    35 	}
    36 
    37 /**
    38 Initializes TSqlScalarFullSelectQuery data members with default values.
    39 */
    40 EXPORT_C TSqlScalarFullSelectQuery::TSqlScalarFullSelectQuery() :
    41 	iDatabaseImpl(NULL)
    42 	{
    43 	}
    44 	
    45 /**
    46 Initializes TSqlScalarFullSelectQuery object.
    47 
    48 @param aDatabase	A reference to the RSqlDatabase object that represents 
    49                     the database on which scalar fullselect queries will be executed.
    50 */
    51 EXPORT_C TSqlScalarFullSelectQuery::TSqlScalarFullSelectQuery(RSqlDatabase& aDatabase) :
    52 	iDatabaseImpl(&aDatabase.Impl())
    53 	{
    54 	SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_TSQLSCALARFULLSELECTQUERY, "0x%X;TSqlScalarFullSelectQuery::TSqlScalarFullSelectQuery;aDatabase=0x%X;iDatabaseImpl=0x%X", (TUint)this, (TUint)&aDatabase, (TUint)iDatabaseImpl));
    55 	}
    56 	
    57 /**
    58 Initializes/reinitializes TSqlScalarFullSelectQuery object.
    59 
    60 @param aDatabase	A reference to the RSqlDatabase object that represents 
    61                     the database on which scalar fullselect queries will be executed.
    62 */
    63 EXPORT_C void TSqlScalarFullSelectQuery::SetDatabase(RSqlDatabase& aDatabase)
    64 	{
    65 	iDatabaseImpl = &aDatabase.Impl();
    66     SQL_TRACE_BORDER(OstTraceExt3(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SETDATABASE, "0x%X;TSqlScalarFullSelectQuery::SetDatabase;aDatabase=0x%X;iDatabaseImpl=0x%X", (TUint)this, (TUint)&aDatabase, (TUint)iDatabaseImpl));
    67 	}
    68 	
    69 /**
    70 Executes a SELECT query which is expected to return a single row consisting of
    71 a single 32-bit integer value and returns that value.
    72 
    73 @param aSqlStmt 16-bit SELECT sql query
    74 
    75 @return 32-bit integer column value.
    76 
    77 @leave  KErrNotFound, If there is no record,
    78         The function may leave with database specific errors categorised as ESqlDbError and
    79   		other system-wide error codes.
    80 */
    81 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectIntL(const TDesC& aSqlStmt)
    82 	{
    83     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINTL_ENTRY16, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectIntL-16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
    84 	TInt res;
    85 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
    86 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlInt, ptr);
    87     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINTL_EXIT16, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectIntL-16;res=%d", (TUint)this, res));
    88 	return res;
    89 	}
    90 	
    91 /**
    92 Executes a SELECT query which is expected to return a single row consisting of
    93 a single 64-bit integer value and returns that value.
    94 
    95 @param aSqlStmt 16-bit SELECT sql query
    96 
    97 @return 64-bit integer column value.
    98 
    99 @leave  KErrNotFound, If there is no record,
   100         The function may leave with database specific errors categorised as ESqlDbError and
   101   		other system-wide error codes.
   102 */
   103 EXPORT_C TInt64 TSqlScalarFullSelectQuery::SelectInt64L(const TDesC& aSqlStmt)
   104 	{
   105     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINT64L_ENTRY16, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectInt64L-16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
   106 	TInt64 res;
   107 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
   108 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlInt64, ptr);
   109 	SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINT64L_EXIT16, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectInt64L-16;res=%lld", (TUint)this, res));
   110 	return res;
   111 	}
   112 	
   113 /**
   114 Executes a SELECT query which is expected to return a single row consisting of
   115 a single real value and returns that value.
   116 
   117 @param aSqlStmt 16-bit SELECT sql query
   118 
   119 @return Real column value.
   120 
   121 @leave  KErrNotFound, If there is no record,
   122         The function may leave with database specific errors categorised as ESqlDbError and
   123   		other system-wide error codes.
   124 */
   125 EXPORT_C TReal TSqlScalarFullSelectQuery::SelectRealL(const TDesC& aSqlStmt)
   126 	{
   127     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTREALL_ENTRY16, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectRealL-16;aSqlStmt=%S", (TUint)this, __SQLPRNSTR(aSqlStmt)));
   128 	TReal res;
   129 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
   130 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlReal, ptr);
   131     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTREALL_EXIT16, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectRealL-16", (TUint)this));
   132 	return res;
   133 	}
   134 	
   135 /**
   136 Executes a SELECT query which is expected to return a single row consisting of
   137 a single text value and copies that value to the place refered by aDest parameter.
   138 
   139 If the destination buffer is not big enough, the function will copy as much data as 
   140 possible and will return positive value - the character length of the text column.
   141 
   142 @param aSqlStmt 16-bit SELECT sql query
   143 @param aDest Refers to the place where the column data will be copied
   144 
   145 @return KErrNone, if the function completes successfully,
   146 		Positive value, The text column value length in characters, in case if the receiving buffer 
   147 						is not big enough.
   148 
   149 @leave  KErrNotFound, If there is no record,
   150         The function may leave with database specific errors categorised as ESqlDbError and
   151   		other system-wide error codes.
   152 */
   153 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectTextL(const TDesC& aSqlStmt, TDes& aDest)
   154 	{
   155     SQL_TRACE_BORDER(OstTraceExt5(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTTEXTL_ENTRY16, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectTextL-16;aSqlStmt=%S;aDest.Ptr()=0x%X;aDest.Size()=%d;aDest.MaxSize()=%d", (TUint)this, __SQLPRNSTR(aSqlStmt), (TUint)aDest.Ptr(), aDest.Size(), aDest.MaxSize()));
   156 	TPtr8 ptr(reinterpret_cast <TUint8*> (const_cast <TUint16*> (aDest.Ptr())), aDest.MaxLength() * sizeof(TUint16));
   157 	TInt rc = Impl().ExecScalarFullSelectL(aSqlStmt, ESqlText, ptr);
   158 	aDest.SetLength(ptr.Length() / sizeof(TUint16));
   159     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTTEXTL_EXIT16, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectTextL-16;rc=%d", (TUint)this, rc));
   160 	return rc;
   161 	}
   162 	
   163 /**
   164 Executes a SELECT query which is expected to return a single row consisting of
   165 a single binary value and copies that value to the place refered by aDest parameter.
   166 
   167 If the destination buffer is not big enough, the function will copy as much data as 
   168 possible and will return positive value - the byte length of the binary column.
   169 
   170 @param aSqlStmt 16-bit SELECT sql query
   171 @param aDest Refers to the place where the column data will be copied
   172 
   173 @return KErrNone, if the function completes successfully,
   174 		Positive value, The binary column value length in bytes, in case if the receiving buffer 
   175 						is not big enough.
   176 
   177 @leave  KErrNotFound, If there is no record,
   178         The function may leave with database specific errors categorised as ESqlDbError and
   179   		other system-wide error codes.
   180 */
   181 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectBinaryL(const TDesC& aSqlStmt, TDes8& aDest)
   182 	{
   183     SQL_TRACE_BORDER(OstTraceExt5(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTBINARYL_ENTRY16, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectBinaryL-16;aSqlStmt=%S;aDest.Ptr()=0x%X;aDest.Size()=%d;aDest.MaxSize()=%d", (TUint)this, __SQLPRNSTR(aSqlStmt), (TUint)aDest.Ptr(), aDest.Size(), aDest.MaxSize()));
   184 	TInt rc = Impl().ExecScalarFullSelectL(aSqlStmt, ESqlBinary, aDest);
   185     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTBINARYL_EXIT16, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectBinaryL-16;rc=%d", (TUint)this, rc));
   186 	return rc;
   187 	}
   188 	
   189 /**
   190 Executes a SELECT query which is expected to return a single row consisting of
   191 a single 32-bit integer value and returns that value.
   192 
   193 @param aSqlStmt 8-bit SELECT sql query
   194 
   195 @return 32-bit integer column value.
   196 
   197 @leave  KErrNotFound, If there is no record,
   198         The function may leave with database specific errors categorised as ESqlDbError and
   199   		other system-wide error codes.
   200 */
   201 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectIntL(const TDesC8& aSqlStmt)
   202 	{
   203 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   204     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINTL_ENTRY8, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectIntL-8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
   205 	TInt res;
   206 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
   207 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlInt, ptr);
   208     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINTL_EXIT8, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectIntL-8;res=%d", (TUint)this, res));
   209 	return res;
   210 	}
   211 	
   212 /**
   213 Executes a SELECT query which is expected to return a single row consisting of
   214 a single 64-bit integer value and returns that value.
   215 
   216 @param aSqlStmt 8-bit SELECT sql query
   217 
   218 @return 64-bit integer column value.
   219 
   220 @leave  KErrNotFound, If there is no record,
   221         The function may leave with database specific errors categorised as ESqlDbError and
   222   		other system-wide error codes.
   223 */
   224 EXPORT_C TInt64 TSqlScalarFullSelectQuery::SelectInt64L(const TDesC8& aSqlStmt)
   225 	{
   226 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   227 	SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINT64L_ENTRY8, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectInt64L-8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
   228 	TInt64 res;
   229 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
   230 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlInt64, ptr);
   231 	SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTINT64L_EXIT8, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectInt64L-8;res=%lld", (TUint)this, res));
   232 	return res;
   233 	}
   234 	
   235 /**
   236 Executes a SELECT query which is expected to return a single row consisting of
   237 a single real value and returns that value.
   238 
   239 @param aSqlStmt 8-bit SELECT sql query
   240 
   241 @return Real column value.
   242 
   243 @leave  KErrNotFound, If there is no record,
   244         The function may leave with database specific errors categorised as ESqlDbError and
   245   		other system-wide error codes.
   246 */
   247 EXPORT_C TReal TSqlScalarFullSelectQuery::SelectRealL(const TDesC8& aSqlStmt)
   248 	{
   249 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   250     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTREALL_ENTRY8, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectRealL-8;aSqlStmt=%s", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf)));
   251 	TReal res;
   252 	TPtr8 ptr(reinterpret_cast <TUint8*> (&res), sizeof(res));
   253 	(void)Impl().ExecScalarFullSelectL(aSqlStmt, ESqlReal, ptr);
   254     SQL_TRACE_BORDER(OstTrace1(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTREALL_EXIT8, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectRealL-8", (TUint)this));
   255 	return res;
   256 	}
   257 	
   258 /**
   259 Executes a SELECT query which is expected to return a single row consisting of
   260 a single text value and copies that value to the place refered by aDest parameter.
   261 
   262 If the destination buffer is not big enough, the function will copy as much data as 
   263 possible and will return positive value - the character length of the text column.
   264 
   265 @param aSqlStmt 8-bit SELECT sql query
   266 @param aDest Refers to the place where the column data will be copied
   267 
   268 @return KErrNone, if the function completes successfully,
   269 		Positive value, The text column value length in characters, in case if the receiving buffer 
   270 						is not big enough.
   271 
   272 @leave  KErrNotFound, If there is no record,
   273         The function may leave with database specific errors categorised as ESqlDbError and
   274   		other system-wide error codes.
   275 */
   276 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectTextL(const TDesC8& aSqlStmt, TDes& aDest)
   277 	{
   278 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   279     SQL_TRACE_BORDER(OstTraceExt5(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTTEXTL_ENTRY8, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectTextL-8;aSqlStmt=%s;aDest.Ptr()=0x%X;aDest.Size()=%d;aDest.MaxSize()=%d", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf), (TUint)aDest.Ptr(), aDest.Size(), aDest.MaxSize()));
   280 	TPtr8 ptr(reinterpret_cast <TUint8*> (const_cast <TUint16*> (aDest.Ptr())), aDest.MaxLength() * sizeof(TUint16));
   281 	TInt rc = Impl().ExecScalarFullSelectL(aSqlStmt, ESqlText, ptr);
   282 	aDest.SetLength(ptr.Length() / sizeof(TUint16));
   283     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTTEXTL_EXIT8, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectTextL-8;rc=%d", (TUint)this, rc));
   284 	return rc;
   285 	}
   286 	
   287 /**
   288 Executes a SELECT query which is expected to return a single row consisting of
   289 a single binary value and copies that value to the place refered by aDest parameter.
   290 
   291 If the destination buffer is not big enough, the function will copy as much data as 
   292 possible and will return positive value - the character length of the text column.
   293 
   294 @param aSqlStmt 8-bit SELECT sql query
   295 @param aDest Refers to the place where the column data will be copied
   296 
   297 @return KErrNone, if the function completes successfully,
   298 		Positive value, The binary column value length in bytes, in case if the receiving buffer 
   299 						is not big enough.
   300 
   301 @leave  KErrNotFound, If there is no record,
   302         The function may leave with database specific errors categorised as ESqlDbError and
   303   		other system-wide error codes.
   304 */
   305 EXPORT_C TInt TSqlScalarFullSelectQuery::SelectBinaryL(const TDesC8& aSqlStmt, TDes8& aDest)
   306 	{
   307 	__SQLTRACE_BORDERVAR(TBuf<100> des16prnbuf);
   308     SQL_TRACE_BORDER(OstTraceExt5(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTBINARYL_ENTRY8, "Entry;0x%X;TSqlScalarFullSelectQuery::SelectBinaryL-8;aSqlStmt=%s;aDest.Ptr()=0x%X;aDest.Size()=%d;aDest.MaxSize()=%d", (TUint)this, __SQLPRNSTR8(aSqlStmt, des16prnbuf), (TUint)aDest.Ptr(), aDest.Size(), aDest.MaxSize()));
   309 	TInt rc = Impl().ExecScalarFullSelectL(aSqlStmt, ESqlBinary, aDest);
   310     SQL_TRACE_BORDER(OstTraceExt2(TRACE_BORDER, TSQLSCALARFULLSELECTQUERY_SELECTBINARYL_EXIT8, "Exit;0x%X;TSqlScalarFullSelectQuery::SelectBinaryL-8;rc=%d", (TUint)this, rc));
   311 	return rc;
   312 	}