How convert string in system.data.datarow?

please help?

Hi @praveen_sonkusare

When you have DataRow you can use

  1. Get Row activity and specify the ColumnIndex (Integer) or ColumnName (String) to get Output or String

  2. Item to access the Column Index (Integer) or Column Name (String)
    for example - a_DataRow.Item(0).ToString - get the first column and convert to string

  3. See image for remainder of activities