could you please suggest to me which one should I install?
i guess its package issue. in UiPath database activities 1.7.1 we cannot use oracle database client. i am facing another issue in execute non query i.e 06/11/2023 07:25:44 Value cannot be null. (Parameter ‘At least one of the connections must be used.’)
I have found solution it is throwing the error because some columns are empty.I am facing one issue in the empty cell of every row I want to write na.how to do it?
- For each row in datatable on dt
- For each activity with dt.Columns and type argument as datacolumn
- If condition with
IsNothing(currentrow(currentitem.ColumnName)) OrElse String.IsNullOrEmpty(currentrow(currentitem.ColumnName).ToString)
- Else side use assign with
currentrow(currentitem.ColumnName) = "NA"
Cheers