Hi,
Can somebody help me out and tell me what I'm doing wrong here?
I have an in-line query that I'm converting into a stored procedure that takes one parameter.
The in-line query worked just fine in my application.
Here it is:
SELECT b.*, pc.categoryname, psc.subcategoryname, ff.*
FROM Board b
left join ProductCategory pc on b.CategoryID = pc.CategoryID
left join ProductSubCategory psc on b.SubCategoryID = psc.SubCategoryID
left join FormFactor ff on psc.SubCategoryID = ff.SubCategoryID
WHERE b.BoardName = 'APEX-344'
Here's that same query as a stored procedure that I've saved in my SQL Server database:
ALTER PROCEDURE [dbo].[GetBoard]
-- Add the parameters for the stored procedure here
@boardname nvarchar(20)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
/* */
SELECT b.*, pc.categoryname, psc.subcategoryname, ff.*
FROM Board b
left join ProductCategory pc on b.CategoryID = pc.CategoryID
left join ProductSubCategory psc on b.SubCategoryID = psc.SubCategoryID
left join FormFactor ff on psc.SubCategoryID = ff.SubCategoryID
WHERE b.BoardName = '@boardname'
END
Here's the procedure call in my ColdFusion where I pass it the parameter.
<cfstoredproc procedure="GetBoard" datasource="#dsn#">
<cfprocparam CFSQLType = "CF_SQL_VARCHAR" variable = "boardname" value="APEX-344">
<cfprocresult name="result" resultset="1">
</cfstoredproc>
<cfdump var="#result#">
I am able to get my resultset dumped, but when I make a statement like:
<cfset session.BoardID = GetBoard.BoardID> or
<cfset session.BoardID = result.BoardID>
I get the following error:
Element BOARDNAME is undefined in GETBOARD.
I know that Boardname exists in my resultset.
Also, when I execute the SP in SQL Server, it runs successfully.
All I'm trying to do is use the results of that SP in the reset of my application. By the way, I've changed the datatype in my SP from varchar to nvarchar and back to no avail, and I also removed the quotes from @boardname, etc.
Please help.
Thanks in advance.
mickeyj2
Can somebody help me out and tell me what I'm doing wrong here?
I have an in-line query that I'm converting into a stored procedure that takes one parameter.
The in-line query worked just fine in my application.
Here it is:
SELECT b.*, pc.categoryname, psc.subcategoryname, ff.*
FROM Board b
left join ProductCategory pc on b.CategoryID = pc.CategoryID
left join ProductSubCategory psc on b.SubCategoryID = psc.SubCategoryID
left join FormFactor ff on psc.SubCategoryID = ff.SubCategoryID
WHERE b.BoardName = 'APEX-344'
Here's that same query as a stored procedure that I've saved in my SQL Server database:
ALTER PROCEDURE [dbo].[GetBoard]
-- Add the parameters for the stored procedure here
@boardname nvarchar(20)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
/* */
SELECT b.*, pc.categoryname, psc.subcategoryname, ff.*
FROM Board b
left join ProductCategory pc on b.CategoryID = pc.CategoryID
left join ProductSubCategory psc on b.SubCategoryID = psc.SubCategoryID
left join FormFactor ff on psc.SubCategoryID = ff.SubCategoryID
WHERE b.BoardName = '@boardname'
END
Here's the procedure call in my ColdFusion where I pass it the parameter.
<cfstoredproc procedure="GetBoard" datasource="#dsn#">
<cfprocparam CFSQLType = "CF_SQL_VARCHAR" variable = "boardname" value="APEX-344">
<cfprocresult name="result" resultset="1">
</cfstoredproc>
<cfdump var="#result#">
I am able to get my resultset dumped, but when I make a statement like:
<cfset session.BoardID = GetBoard.BoardID> or
<cfset session.BoardID = result.BoardID>
I get the following error:
Element BOARDNAME is undefined in GETBOARD.
I know that Boardname exists in my resultset.
Also, when I execute the SP in SQL Server, it runs successfully.
All I'm trying to do is use the results of that SP in the reset of my application. By the way, I've changed the datatype in my SP from varchar to nvarchar and back to no avail, and I also removed the quotes from @boardname, etc.
Please help.
Thanks in advance.
mickeyj2