how to convert string to integer in uipath for sql integer values
Hey!
To convert the string to integer follow the below steps:
InputString=“1234567”
Convert.Int32(InputString)
This will convert to Integer variable…
In SQL You can store the integers in 2 ways
- Varchar-String (We can store the integers also)
- Int- This will only store the integer values
In your DataBase the dataTable column Value is stored in Varchar you can convert to int in UiPath
by using above mentioned expression
Regards,
NaNi