stophun / fdotoolbox

Automatically exported from code.google.com/p/fdotoolbox
0 stars 1 forks source link

ArcSDE data preview failure #265

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Data Preview currently fails on ArcSDE because the 
FdoFeatureService.GetFeatureCount() method is failing when the connection is 
an ArcSDE connection.

GetFeatureCount() tries to count the number of features in a feature class 
with these methods (in order of support)

1) ISelectAggregates w/ COUNT()
2) Raw SQL
3) IExtendedSelect and inspecting the Count property of the resulting reader.
4) Brute force

For ArcSDE, method 1) is failing.

Original issue reported on code.google.com by jumpinja...@gmail.com on 23 Dec 2009 at 5:19

GoogleCodeExporter commented 8 years ago
Fixed in r1054

Original comment by jumpinja...@gmail.com on 23 Dec 2009 at 6:13