Top "Cursor" questions

DO NOT USE.

Get all dates between two dates in SQL Server

How to get all the dates between two dates? I have a variable @MAXDATE which is storing the maximum date …

sql sql-server cursor
Looping Over Result Sets in MySQL

I am trying to write a stored procedure in MySQL which will perform a somewhat simple select query, and then …

mysql loops stored-procedures cursor
Set mouse focus and move cursor to end of input using jQuery

This question has been asked in a few different formats but I can't get any of the answers to work …

javascript jquery focus cursor
Can I loop through a table variable in T-SQL?

Is there anyway to loop through a table variable in T-SQL? DECLARE @table1 TABLE ( col1 int ) INSERT into @table1 SELECT …

sql sql-server tsql cursor table-variable
Using external images for CSS custom cursors

Is it possible to use external image URLs for CSS custom cursors? The following example doesn't work: HTML: <div …

html css cursor
Is it possible to remove the hand cursor that appears when hovering over a link? (or keep it set as the normal pointer)

I would like to remove the hand cursor that appears when you hover over a hyperlink. I have tried this …

css hyperlink cursor
Bold black cursor in Eclipse deletes code, and I don't know how to get rid of it

When I edit code in the middle of statements, it replaces the current code around it. I cannot find a …

java eclipse cursor
PL/SQL print out ref cursor returned by a stored procedure

How can I fetch from a ref cursor that is returned from a stored procedure (OUT variable) and print the …

oracle plsql cursor ref
What's the best way to iterate an Android Cursor?

I frequently see code which involves iterating over the result of a database query, doing something with each row, and …

android cursor
cursor.fetchall() vs list(cursor) in Python

Both methods return a list of the returned items of the query, did I miss something here? Or they have …

python cursor mysql-python