sql server - UiPath scrape into sql database -


not sure how many of have used uipath, having issue when scrapping within uipath , trying insert scrapped variable database. keeps telling me not right column name. suggestions?

to pass contents of variable returned scrapeactivity query must first declare parameter in "parameters" property of executenonquery activity.

let's scrapeactivity returns scraped text in scrapeactivityresult variable. click on "edit query" , afterwards "parameters" button. new dialog open can add parameters. add new in parameter named companyname of type "string" , set value scrapeactivityresult variable.

after that, have use newly created parameter(companyname) query

"insert tblcompany('companyname') values (@companyname)" 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -