I've created a stored procedure for accessing accounting data from FreeRADIUS, which has been tested in MySQL Workbench and runs fine, but when running as a cfquery/cfstoredproc I get the error 'Incorrect arguments to EXECUTE'.
I have checked the driver is set up for MySQL 4/5 (the database is MySQL 5) and have tried copying and pasting the call from MySQL Workbench and running without using cfqueryparam as shown below but it still returns the same error.
The stored procedure was created with
DELIMITER $$
CREATE PROCEDURE radius.GetUserDataUsageForMonth(IN StartDate DATE, IN EndDate DATE, IN UserName
VARCHAR(100))
BEGIN
SET @records = (SELECT COUNT(UserName) FROM `radius`.`radacct` WHERE userName = @UserName AND AcctStartTime BETWEEN @StartDate AND @EndDate) - 1;
SET @SqlQuery = 'SELECT SUM(AcctOutputOctets) AS BytesIN, SUM(AcctInputOctets) AS BytesOUT FROM
(SELECT * FROM `radius`.`radacct` WHERE userName = @UserName AND AcctStartTime BETWEEN @StartDate AND @EndDate LIMIT ?
UNION ALL
SELECT * FROM `radius`.`radacct` WHERE userName = @UserName AND AcctStartTime < @StartDate ORDER BY AcctStartTime DESC LIMIT 1) AS Totals;';
PREPARE stmt FROM @SqlQuery;
EXECUTE stmt USING @records;
DEALLOCATE PREPARE stmt;
END $$
DELIMITER ;
To call this I am using:
<cfquery name="qRadAccount_currentData" datasource="#application.datasource_radius#">
CALL radius.GetUserDataUsageForMonth('2011-06-01','2011-07-01','ryan.french');
</cfquery>
I have also tried
<cfstoredproc procedure="radius.GetUserDataUsageForMonth" datasource="#application.datasource_radius#" result="qRadAccount_currentData">
<cfprocparam cfsqltype="cf_sql_date" value="2011-06-01">
<cfprocparam cfsqltype="cf_sql_date" value="2011-07-01">
<cfprocparam cfsqltype="cf_sql_varchar" value="ryan.french">
</cfstoredproc>
EXECUTE stmt USING ...statement? That is one cause of theIncorrect arguments to EXECUTEerror. rpbouman.blogspot.com/2005/11/… – Leigh Jun 23 '11 at 22:03CREATE PROCEDURE radius.GetUserDataUsageForMonth(IN StartDate DATE, IN EndDate DATE, IN UserName VARCHAR(100)) BEGIN END– Leigh Jun 23 '11 at 23:16