//检查SHAPE.LEN字段///////////////////////////////////////////////////////////////////////////
CString strSql(pSql);
int iLocation = strSql.Find(CString("SHAPE.LEN"));
//if(iLocation > -1)
{
ITablePtr iTable = m_iFeatureClass;
IEsriCursorPtr pCursor;
HRESULT hr = iTable->Search(ipQuery,FALSE,&pCursor);
m_pFeatureCursor = pCursor;
m_iFeatureClass->FeatureCount(ipQuery,&m_lFeatureCount);
return m_pFeatureCursor != NULL;
}
///////////////////////////////////////////////////////////////////////////////////////////////