I'm having a problem with SQL Server 2005 stored procedures using Dreamweaver CS3 and Coldfusion 8.
I am using rather simple SQL in the stored procedure as a test:
SELECT Prod_Category.category_nam
e AS Category, Prod_Category.category_ID AS [Category ID]
FROM Prod_Category INNER JOIN
Products ON Prod_Category.category_ID = Products.category
WHERE (Products.online = 1)
GROUP BY Prod_Category.category_nam
e, Prod_Category.category_ID
ORDER BY Category
This SQL executes as expected in SQL 2005 as well as in a standard Dreamweaver recordset.
I'm using this CFML to call the recordset which is just standard code using the Bindings Panel:
<CFSTOREDPROC procedure="dbo.Categories_
Online" datasource="#sDSN#">
<CFPROCRESULT name="Categories">
</CFSTOREDPROC>
But I get this lovely error when trying to test the recordset in Dreamweaver:
http://www.thinkwelldesigns.com/Dreamweaver.jpgStart Free Trial