Question : parametized cursor declaration

is it possible to declare a parameterized cursor?
if so, give a code example by modifying the example below
(that doesn't work @Qsource,@start_time,@end_time are the variables).

DECLARE @Qcursor cursor
SET @Qsource = @source + 'bas.dbo.QTab'
DECLARE @Qcursor CURSOR for SELECT * from @Qsource where TEMPS >= ''@start_time''
     AND TEMPS <= ''@end_time'' ORDER BY TEMPS
FETCH NEXT FROM @Qcursor
INTO @market, @time, @open,  @close
WHILE @@FETCH_STATUS = 0

Answer : parametized cursor declaration

DECLARE @Qcursor CURSOR for
SELECT * from @Qsource
where TEMPS >= @start_time AND TEMPS <= @end_time
ORDER BY TEMPS


Be aware, though, that SQL (oddly) resolves the variables at *DECLARE* time, not at OPEN time.  So if/when you change the values of the variables, you have to not only CLOSE and OPEN the cursor, but you must DEALLOCATE and re-DECLARE then open the cursor.
Random Solutions  
  •  I jthink you must have the answer to my question as well.  How can I make the footnote separator (in Word 2007) be closer to the footnote text? It has 6 paragraph breaks before footnote text now.
  •  MS Project 2003 - What is the best method for changing a project and all associated tasks to a 7-day calendar?
  •  Can you validate email addresses without SENDING it to the address? We want to confirm before sending bulk marketing emails. Some will be old and outdated.
  •  Installing a root certificate on cell phone for EAS
  •  What is the best internet security and antivirus program?
  •  MSSQL Reporting Services - Filtering data in a table
  •  How to Encrypt FullText Search Column Value using MS SQL Server 2005?
  •  .mdb vs .adp front end with SQL server backend
  •  Running 2 web apps (Apache and IIS) on the same port 443 https ?
  •  Delegate authority to unlock workstation
  •  
    programming4us programming4us