[fdo-commits] r2554 -
trunk/Providers/GenericRdbms/Src/Fdo/FeatureCommands
svn_fdo at osgeo.org
svn_fdo at osgeo.org
Mon Feb 19 18:15:07 EST 2007
Author: thomasknoell
Date: 2007-02-19 18:15:07 -0500 (Mon, 19 Feb 2007)
New Revision: 2554
Modified:
trunk/Providers/GenericRdbms/Src/Fdo/FeatureCommands/FdoRdbmsSelectCommand.h
Log:
Required changes in the context of removing additional identity columns as part of the reader returned by the SelectAggregates command.
Modified: trunk/Providers/GenericRdbms/Src/Fdo/FeatureCommands/FdoRdbmsSelectCommand.h
===================================================================
--- trunk/Providers/GenericRdbms/Src/Fdo/FeatureCommands/FdoRdbmsSelectCommand.h 2007-02-19 23:14:19 UTC (rev 2553)
+++ trunk/Providers/GenericRdbms/Src/Fdo/FeatureCommands/FdoRdbmsSelectCommand.h 2007-02-19 23:15:07 UTC (rev 2554)
@@ -65,7 +65,7 @@
// Executes the select command and returns an object that
// implements IFeatureReader. Only distinct properties will be returned if distinct is set to true
- FdoIFeatureReader *Execute ( bool distinct );
+ FdoIFeatureReader *Execute ( bool distinct, FdoInt16 callerId = FdoCommandType_Select );
virtual ~FdoRdbmsSelectCommand();
@@ -97,7 +97,7 @@
// Executes the select command and returns an object that
// implements IFeatureReader.
- virtual FdoIFeatureReader *Execute () { return Execute( false ); }
+ virtual FdoIFeatureReader *Execute () { return Execute( false, FdoCommandType_Select ); }
/// <summary>Gets the IdentifierCollection that holds the list of property names to
/// return with the result. If empty all properties of the specified class
More information about the fdo-commits
mailing list