Function Database

How can i call database function in UiPath

Do you mean stored procedure?

Cheers

No Stored procedure i get it. But i want to call a function using uipath.

Hmmm
Could you give an example of “database function”?

Cheers

By database functions means SQL functions. Example: This is an example i have picked from google.
CREATE FUNCTION sales.udfNetSale(
@quantity INT,
@list_price DEC(10,2),
@discount DEC(4,2)
)
RETURNS DEC(10,2)
AS
BEGIN
RETURN @quantity * @list_price * (1 - @discount);
END;

I see. You can call your custom function like a built-in function in SELECT statement

SELECT
sales.udfNetSale(10,100,0.1) net_sale

Cheers