rda.InternetUrl = FDBInternetUrl;
rda.ConnectionManager = true;
rda.LocalConnectionString = FSqlConStrLocal;
rda.Pull("SqlFuntionReturn", Sql, FSqlOLEConStrRemote, RTO);
SqlCeConnection scc = new SqlCeConnection(FSqlConStrLocal);
SqlCeDataAdapter SCD = new SqlCeDataAdapter("Select * from SqlFuntionReturn", scc);
scc.Open();
SCD.FillError += new FillErrorEventHandler(SCD_FillError);
DataTable DT=new DataTable();
SCD.Fill(DT);//这里跳出错误
return DT;
catch (SqlCeException Ex)
{
WriteTopPlayLog("RDAExecSqlWithConReturnTable" + Sql, Ex.Message);
return null;
}
跳出这个错误:Error:The operation completed successfully