I have replied in your thread.
using (FeatureDataReader fDataReader = featureLayer.GetDataReader(pQFilter)) { while (fDataReader.Read()) { fDataReader.SetValue(colEventIndex, txtEvent.Text); fDataReader.SetValue(colDevicesIndex, txtBarcodes.Text); } fDataReader.Update(); }
// queries the datatable and prepares it to be read from FeatureDataReader fDataReader = featureLayer.GetDataReader(pQFilter); //ESRI.ArcGIS.Mobile.Client.Windows.MessageBox.ShowDialog(fDataReader.GetDataTypeName(columnNameIndex)); // allows the datatable to be read fDataReader.Read(); // sets the current event and radiation devices to the team's info fDataReader.SetValue(colEventIndex, txtEvent.Text); fDataReader.SetValue(colDevicesIndex, txtBarcodes.Text); fDataReader.Update();
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.