Link to home
Start Free TrialLog in
Avatar of NickMalloy
NickMalloyFlag for United States of America

asked on

Error with Cursor and Into list must match.

I'm trying to build a cursor out and I'm getting an error on my into statement. I don't get why because I'm calling 4 columns and trying to place 4 columns? What am I missing?

Cursorfetch: The number of variables declared in the INTO list must match that of selected columns.

 Begin
	   Declare c Cursor For Select equModelNum equipTypeId, manfId, equLink From tblEquipment
       Open c
       Declare @equModelNum nvarchar(100)
	   Declare @equipTypeId int
	   Declare @manfId int
	   Declare @equLink nvarchar(150)
	   Fetch next From c into @equModelNum, @equipTypeId, @manfId, @equLink
	   While @@Fetch_Status=0 Begin
          
          if @equModelNum <> '0'
                 Declare @equipTypeIdName nvarchar(50)
                 Declare @manfIdName nvarchar(50)
				 Declare @NewequipTypeId int
                 Declare @NewmanfId int
                 Set @equipTypeIdName = (Select Equipment_Type from tblEquipmentType where equipTypeID = @equipTypeId)
                 Set @manfIdName = (Select Manufacture_Name from tblManufacturer where manfId=@manfId)
				 print @equModelNum
				 print @equipTypeId
				 print @manfId
				 print @equLink
				 Print @equipTypeIdName
				 print @manfIdName
               
          Fetch next From c into @equModelNum, @equipTypeId, @manfId, @equLink
       End
 
       Close c
       Deallocate c
	   End

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Aneesh
Aneesh
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In the below line there is a comma missing between equModelNum and equipTypeId.
 Declare c Cursor For Select equModelNum equipTypeId, manfId, equLink From tblEquipment

Open in new window

Did you miss the first post  ?
Nick

Normal EE protocol is that if two answers are very identical, either the first one gets all the points, or points are split between them.

I'll take the liberty of re-opening this question so you can re-award points.

Thanks in advance.
Jim
Avatar of NickMalloy

ASKER

When I was awarding points I accidentally selected Jimhorn when I thought I was selecting yours. When I said accept answer, yours was the only response to the question. I don't see a way to correct this? Is there a way? I'd like to award you points????