Tagged Questions
The cursors tag has no wiki summary.
14
votes
4answers
14k views
Cursor.Current vs. this.Cursor in .Net (C#)
Is there a difference between Cursor.Current and this.Cursor (where "this" is a WinForm) in .Net? I've always used this.Cursor and have had very good luck with it but I've recently started using ...
11
votes
3answers
19k views
Custom Cursor Image CSS
I have a number of heroshot images, that have a modal popup when clicked.
I'm trying to get my cursor to turn into magnifying glass whenever it is moved over the image. The following CSS does not ...
9
votes
11answers
5k views
Why are relational set-based queries better than cursors?
When writing database queries in something like TSQL or PLSQL, we often have a choice of iterating over rows with a cursor to accomplish the task, or crafting a single SQL statement that does the same ...
8
votes
4answers
3k views
How do cursors work in Python's DB-API?
I have been using python with RDBMS' (MySQL and PostgreSQL), and I have noticed that I really do not understand how to use a cursor.
Usually, one have his script connect to the DB via a client DB-API ...
8
votes
4answers
10k views
Cursor vs While loop. What are advantage/disadvantages of cursors - mssql
Is it a good idea to use while loop instead of cursor. What are advantage/disadvantages of cursors.
7
votes
6answers
2k views
What is wrong with Cursors?
SQL Server developers consider Cursors a bad practise , except under some circumstances. They believe that Cursors do not use the SQL engine optimally since it is a procedural construct and defeats ...
7
votes
9answers
8k views
SELECT COUNT(*) vs. fetching twice with an explicit cursor
I have read a book whose title is "Oracle PL SQL Programming" (2nd ed.) by Steven Feuerstein & Bill Pribyl. On page 99, there is a point suggested that
Do not "SELECT COUNT(*)" from a table ...
7
votes
2answers
9k views
Insert text in Javascript contenteditable div
I have a problem where I need to insert a text (string, may or may not have html tags) to a div. It has to be a div and not a textarea.
Is there anyway to do that? First of all, I need to get the ...
7
votes
6answers
7k views
How do I disable query results when executing a stored procedure from a stored procedure?
Within a stored procedure, another stored procedure is being called within a cursor. For every call, the SQL Management Studio results window is showing a result. The cursor loops over 100 times and ...
7
votes
7answers
4k views
How do I get rid of the mouse cursor in full-screen exclusive mode?
I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no ...
6
votes
3answers
16k views
How to find Current open Cursors in Oracle
What is the query to find the no. of current open cursors in an Oracle Instance?
Also, what is the accuracy/update frequency of this data?
I am using Oracle 10gR2
5
votes
1answer
86 views
Cursors + Pagination & SEO
I would like to know if it's possible to paginate using cursors and keep those pages optimized for SEO at the same time.
/page/1
/page/2
Using offsets, gives to Google bot some information about ...
5
votes
3answers
374 views
Once again about animation (*.ani) cursors from program resources (Delphi 2010)
I create a resource file, Cur.rc. It contains
CUR1 21 "MYCURSOR.ANI"
mycursor.ani is a file that exists. It's a normal .ani animated cursor.
I compile the resource file using
Brcc32 cur.rc
...
5
votes
4answers
444 views
Avoid Database Cursor in SQL Server
I have a bit of a puzzle (at least for me) which I am hoping is mostly because I am not yet an SQL master of the universe. Basically I have three tables:
Table A, Table B, and Table C.
Table C has ...
5
votes
5answers
11k views
VB.Net: Set Custom Cursor from Resource File
In my VB.net project I created a custom cursor (Window.cur). How can I assign that to the cursor without having to use the full file path to that file?
VB.Net has My.Resources but it does not show ...
4
votes
1answer
62 views
Keep getting 'cursor is READ-ONLY'
My code seems pretty forward.
I want to update a specific field with a unique counter, not equal {1,2,3,...}.
I keep getting the error 'The cursor is READ ONLY.'
Also: is there a simpler way?
...
4
votes
1answer
105 views
Stored procedure error on CALL
I am trying to call a procedure which compiles successfully but on calling I get this error:
Query: call proc5
Error Code: 1064
You have an error in your SQL syntax; check the manual that ...
4
votes
3answers
81 views
Sql Server - Is a cursor the only alternative to do this kind of operation
I'm trying to optimize a long transaction and I've seen that the following is done quite a few times:
Declare @myCursor CURSOR FAST_FORWARD FOR
SELECT field1, MIN(COALESCE(field2, -2)) FROM MyTable ...
4
votes
3answers
513 views
SQL Server Cursor Reference (Syntax, etc)
I don't use SQL Server Cursors often but when I do, I always have to look up the syntax and options.
So I wanted to ask, what is the best SQL Server Cursor reference on the web?.
I'm looking for a ...
4
votes
5answers
15k views
tsql : How to assign a select result to a variable?
Question: How do I store a selected field value into a variable from a query and use it in an update statement?
Here is my procedure:
I'm writing a sql server 2005 tsql stored procedure which does ...
4
votes
1answer
6k views
Adobe Flex / as3: How to implement custom drag-and-drop cursors
Our product team has requested custom cursors during drag/drop operations. They have provided me with three images to implement:
Open-Hand-Grabber.png: displays when a user hovers over an item that ...
4
votes
7answers
4k views
CSS Custom Cursors
This should be easy, but I am pulling my hair out!
What tool do you use to create custom .CUR files for use in CSS? Are there any online GIF to CUR converters? Any plugins for PaintShop Pro that ...
3
votes
1answer
52 views
TSQL Cursor how to check if already declared and thus deallocate
How can I make sure that I deallocate a cursor if it already exists before I try and open it again?
For a table I can use something like:
if exists (select top 1 from tempdb.sys.tables where name = ...
3
votes
2answers
150 views
Cursors on MySQL - Good or Bad
I have always heard people saying bad about using cursors and this is especially in Microsoft SQL Server as they are very slow. Is this the case with Cursors on MySQL as well? Does cursors in MySQL ...
3
votes
3answers
798 views
Display Custom Cursor in WPF Application
I have a set of cursors (.cur files) that I want to use with my WPF/VB.net application, without changing the cursors system-wide. I am assuming that I would somehow use each WPF object's "cursor" ...
3
votes
1answer
2k views
ORA-00932: inconsistent datatypes: expected - got -
I have been using Oracle(10g.2) as a PHP programmer for almost 3 years, but when I gave an assignment, I have tried to use the ref cursors and collection types for the first time. And I
've searched ...
3
votes
2answers
3k views
When to close cursor in Android?
Hello
i have an app that uses cursor to select data via rawQuery from a sqlite db to populate a ListView in Android; every time the user clicks on a listview item i create a new instance of Activity ...
3
votes
1answer
105 views
Inconsistent cursor results when looping over databases
I have several databases named very similar (my-db-1, my-db-2, my-db-3, my-db-4). I want to execute the same stored procedure on each of these databases. I decided to use cursors. However, I am ...
3
votes
5answers
201 views
solving a problem with cursors
I have a question. I am working on cursors. Each time, after fetching the last records and printing its data’s, the cursor prints an addition line. To understand what I mean please consider the ...
3
votes
1answer
2k views
MySQL fetch next cursor problem
I have a problem fetching values from a MySQL cursor.
I create a temporary table which is a mere copy of another table (the original table has a variable name, that's passed as the procedure's ...
3
votes
1answer
135 views
What do the various Tk cursors mean?
My Google-fu is failing me. Please, consider the following:
http://tcl.activestate.com:8000/man/tcl8.4/TkCmd/cursors.htm
Some of the cursors I understand easily enough, "watch" tells the user to ...
3
votes
5answers
13k views
Flex 3: How can I change the Mouse Cursor when mousing over a Text Input?
In Flex, by default, when you mouse over a Text Input the mouse cursor is changed to the standard I cross bar. How can I change this cursor so the regular mouse pointer cursor is shown rather than ...
3
votes
2answers
2k views
Create a semi-transparent cursor from an image
Is it possible to create a cursor from an image and have it be semi-transparent?
I'm currently taking a custom image and overylaying the mouse cursor image. It would be great if I could make this ...
3
votes
6answers
4k views
How to use “native” custom mouse cursors from within Flash apps?
The most common way of changing a cursor in Flash apps seems to be based on simply hiding the native OS cursor and displaying a graphic (drawn by the Flash Player) inside the Flash rectangle where the ...
3
votes
5answers
339 views
What is a “reasonable” length of time to keep a SQL cursor open?
In your applications, what's a "long time" to keep a transaction open before committing or rolling back? Minutes? Seconds? Hours?
and on which database?
2
votes
1answer
48 views
How to remove dangling Cursors in android
Can anyone tell me how to remove dangling cursors. I am Closing the Database whenever my work is completed with cursors.
I want this as I am getting the same error as showed in link below
...
2
votes
1answer
62 views
Possible complications for not closing database cursors?
What are the possible complications and repercussions if you do not close cursors for your Oracle database?
2
votes
1answer
245 views
Forbidden cursor?
I am looking for the name of the "forbidden/cancel" cursor.
I can't seem to find it.
2
votes
6answers
126 views
SQL Server 2008: complex Insert
I have a table called Employees:
BeginYear | EndYear | Name
1974 1983 Robert
For each record in Employees I need to insert each year into a new table called ...
2
votes
4answers
917 views
Python + MongoDB - Cursor iteration too slow
I'm actually working in a search engine project.
We are working with python + mongoDb.
I'm having the following problem:
I have a pymongo cursor after excecuting a find() command to the mongo db.
The ...
2
votes
1answer
96 views
Twitter Cursors
Quick question, do the page 'cursors' on the Twitter Api change. What I mean by this is if the cursor ID for the second page of results was 123456789 will it still be the same every time or does it ...
2
votes
1answer
1k views
Prevent IllegalStateException in SQLiteCursor for Android
I have an ListActivity that is bound to a cursor, when items in the ListView are selected an EditItem activity is launched by startActivityForResult, this EditItem activity preforms several queries, ...
2
votes
2answers
185 views
Write Oracle Procedure To Accept List of Items used in Select
There have been a couple of hints that seem to have gotten me close here, but with some unique issues, I'm hoping this question is distinguishing enough to merit its own posting.
For starters here's ...
2
votes
1answer
79 views
SQL SERVER Query Help (using cursor?)
The query below calcuates the percertage of a product between FY2009 vs. FY2010 for California. I am assigned to calculate the remaining states (Please see STATES table). Is there a way in SQL SERVER ...
2
votes
2answers
127 views
SQL question - Cursor or not?
I have a query which returns 2+ rows. In those results is a column which we can call columnX for now. Lets look at those example results:
columnX
100
86
85
70
null
null
I get 6 rows for example, ...
2
votes
2answers
892 views
Stored procedure using cursor in mySql
I wrote a stored procedure using cursor in mysql but that procedure is taking 10 second to fetch the result while that result set have only 450 records so, I want to know that why that proedure is ...
2
votes
2answers
147 views
Help replace this SQL cursor with better code
Can anyone give me a hand improving the performance of this cursor logic from SQL 2000. It runs great in SQl2005 and SQL2008, but takes at least 20 minutes to run in SQL 2000. BTW, I would never ...
2
votes
1answer
276 views
Java: ResultSet closing strategy, apart from closing it in finally
I am facing ORA-01000: maximum open cursors exceeded although I am closing the resultsets in finally block. But I suspect there is some trouble with my legacy code, below is my pseudo-code
while ...
2
votes
2answers
459 views
ORA-02014- How do I update a randomly selected row from a table?
I'm trying to randomly select a card from a table of cards with columns c_value and c_suit using a procedure. After selecting it, the procedure should update that entry's taken field to be 'Y'.
...
2
votes
3answers
3k views
Looping Over Result Sets in MySQL (Resolved: Using Cursors)
I am trying to write a stored procedure in MySQL which will perform a somewhat simple select query, and then loop over the results in order to decide whether to perform additional queries, data ...