Page 1 of 1

Issue on Execute Stored Procedure with SQL Server

Posted: Wed Sep 02, 2020 7:42 am
by drmanuel
Hi,
I'm not able to execute SQL Server stored procedures using the executequery. All queries work fine insert/update etc.
This is the code I use:
Code: Select all
$proc = @@PROCESS;
$result = executeQuery("SELECT DBS_UID FROM DB_SOURCE WHERE PRO_UID='$proc' " .
    "AND DBS_DATABASE_NAME='SHEET'");

if (!is_array($result) or count($result) == 0) 
    die("Error!");

$db = $result[1]['DBS_UID'];
executeQuery ("EXEC UPD_RDA '20200901164359363','123',''", $db);
Any idea how to solve?
Thanks in advance.

Re: Issue on Execute Stored Procedure with SQL Server

Posted: Fri Jun 24, 2022 4:04 pm
by marceloayllon
Hello,

The function is made for local queries and the syntax is as follows

variant executeQuery(string SQLStatement, string DBConnectionUID='workflow')

but in your example it is : executeQuery ("EXEC UPD_RDA '20200901164359363','123',''", $db);

string SQLStatement: The SQL statement to be executed, must begin with SELECT, INSERT, UPDATE, DELETE, EXECUTE, EXEC, SHOW, DESCRIBE, EXPLAIN or BEGIN.

I share with you the documentation
https://wiki.processmaker.com/3.2/ProcessMaker_Functions/Database_Functions