QueryDef and Join

283
1
02-16-2022 06:16 AM
AnupamKumar
New Contributor

Are the RowCursor which are accessible by creating QueryDef and Join in ArcGIS Pro SDK  are read only?  Updating the Row iterating through RowCursor is not possible.

using (Table joinedTable = join.GetJoinedTable())
using(RowCursor rowCursor = joinedTable.Search(null,false))
{
while (rowCursor.MoveNext())
{
using (Row row = rowCursor.Current)
{

}
}
}

 

0 Kudos
1 Reply
GKmieliauskas
Esri Regular Contributor

Hi,

Maybe it helps you:

https://community.esri.com/t5/geoprocessing-questions/edit-a-joined-table-arcgis-pro/td-p/546829 

P.s.

"You can edit joined tables, but only the base table fields. Fields from the joined table are read-only."

https://pro.arcgis.com/en/pro-app/latest/help/data/tables/edit-an-active-table.htm 

 

0 Kudos