hi, does anyone know (or know were to find out) what elements are visible to Coldfusion as am trying to see if any results are returned and cannot used .recordcount as this appears not to be a element of a stored procedure
CREATE DEFINER=`root`@`%` PROCEDURE `spMyProcedure`(IN varMyVar VARCHAR(45))
BEGIN
SELECT COLUMN1,
COLUMN2,
COLUMN3
FROM tblMyTable
WHERE COLUMN1 = varMyVar;
END
You could then use qryMyQueryResults as a qualifier in instances such as qryMyQueryResults.RecordCount.