Uipath and sql

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

  1. Varchar-String (We can store the integers also)
  2. 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