Tagged Questions

A cursor is a control structure for traversing records in a database. Also a moving placement or pointer that indicates a position in a computer screen.

learn more… | top users | synonyms

52
votes
8answers
41k views

How to get cursor position in textarea?

How do you get the cursor position in text area using JavaScript? For example: This is| a text This should return 7. How would you get it to return the strings surrounding the cursor/selection? eg: ...
33
votes
14answers
6k views

Why do people hate SQL cursors so much?

I can understand wanting to avoid having to use a cursor due to the overhead and inconvenience, but it looks like there's some serious cursor-phobia-mania going on where people are going to great ...
21
votes
2answers
385 views

When will a FAST_FORWARD cursor have a work table (and is this something to avoid)?

Background I noticed whilst experimenting with running total queries that sometimes the estimated plan just shows a "Fetch Query" and the actual plan shows repeated Fetches from the Clustered ...
18
votes
3answers
36k views

Android: Binding data from a database to a CheckBox in a ListView?

I'm trying to bind data from my SQLiteDatabase to a ListView. I'm currently using a SimpleCursorAdapter to fill in my ListView. Unfortunately this doesn't seem to work with setting a CheckBox's ...
17
votes
7answers
14k views

Custom cursor in WPF?

I want to use an image or icon as a custom cursor in WPF app. What's the best way to do it?
16
votes
1answer
346 views

How can I find the cursor location (X/Y, not line/column) in an HTML textarea?

I'd like to display a dropdown list in a textarea to assist the user in typing certain things. You know this from current IDEs as code completion. As you start typing something, a popup will appear ...
14
votes
3answers
968 views

Cursor Wrapping/Unwrapping in ContentProvider

I’m creating ContentProvider which is a proxy of another ContentProvider (for security issues and to give access to part of functionality of full app). public class GFContactsProvider extends ...
13
votes
5answers
467 views

Is it wrong to use the hand cursor for clickable items such as buttons?

I've always thought the hand cursor to be the ideal visual indicator for "you may click here" to the user. We are used to see it in this context daily because of it's usage on hyperlinks and hence all ...
11
votes
2answers
1k views

POJO's versus Cursors in Android

I usually tend to define the model layer of my apps using POJO's, such as Article, Comment, etc. I was about to implement an AlphabetIndexer in the adapter of one of my ListViews. Right now this ...
11
votes
7answers
2k views

how to get a word under cursor using JavaScript

in this case: <p> some long text </p> how can i know that mouse cursor is above the 'text' word?
11
votes
4answers
6k views

How to hide cursor

Is there anyway to hide cursor other than using transparent gif image?
11
votes
9answers
2k views

MS SQL Server - When is a CURSOR good?

Many times when I've written stored procedures, etc. I use a CURSOR at first and later find some performance issue with my procedure. Every thing I read says CURSORS are awful, cause unnecessary ...
10
votes
2answers
5k views

android simplecursoradapter not updating with database changes

I have an android list activity that is backed by a database cursor through a SimpleCursorAdapter. When the items are clicked, a flag field in the coresponding row in the database is toggled and ...
10
votes
8answers
9k views

SQL Call Stored Procedure for each Row without using a cursor

How can one call a stored procedure for each row in a table, where the columns of a row are input parameters to the sp without using a Cursor?
10
votes
4answers
2k views

Using Eclipse TableViewer, how do I navigate and edit cells with arrow keys?

I am using a TableViewer with a content provider, label provider, a ICellModifier and TextCellEditors for each column. How can I add arrow key navigation and cell editing when the user selects the ...
9
votes
2answers
6k views

Best way to join tables using sqlite in android

I am trying to find out the best way to do a simple table join on my two tables using a sqlite database in an android application. Is the simplest way to use CursorJoiner or is there any easier way?
9
votes
7answers
9k views

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 col1 FROM table2 I use cursors as well, but cursors seem less flexible ...
8
votes
3answers
1k views

Simulate Mouse Clicks on Python

I'm currently in the process of making my Nintendo Wiimote (Kinda sad actually) to work with my computer as a mouse. I've managed to make the nunchuk's stick control actually move the mouse up and ...
8
votes
7answers
6k views

Getting the browser cursor from “wait” to “auto” without the user moving the mouse

I use this jQuery code to set the mouse pointer to its busy state (hourglass) during an Ajax call... $('body').css('cursor', 'wait'); and this corresponding code to set it back to normal... ...
8
votes
2answers
6k views

C# - Capturing the Mouse cursor image

BACKGROUND I am writing a screen capture application My code is based derived from this project: http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?display=Print Note that the code ...
8
votes
5answers
4k views

Fastest way(s) to move the cursor on a terminal command line?

What is the best way to move around on a given very long command line in the terminal? Say I used the arrow key or Ctrl-R to get this long command line: ./cmd --option1 --option2 --option3 --option4 ...
8
votes
2answers
5k views

Moving mouse cursor programmatically

To start out I found this code at http://swigartconsulting.blogs.com/tech_blender/2005/08/how_to_move_the.html: public class Win32 { [DllImport("User32.Dll")] public static extern long ...
7
votes
1answer
171 views

Query MediaStore Cursor using specific folder

I use a cursor to return items for a media based Listview. I would like to only return items that are in a specific folder. This works for my Song list, as this cursor is based off ...
7
votes
3answers
583 views

Custom cursor interaction point - CSS / JQuery

I'm trying to use a custom cursor for an online game, in this case it's a sniper scope. The problem is when I reference the cursor via CSS, the interaction point is still the top left of the icon, ...
7
votes
1answer
720 views

Android: CursorLoader crash on non-topmost Fragment

I have a few ListFragments that use a CursorLoader to retrieve their content. As the user drills down through the content, one Fragment replaces another (the Activity remains the same). But if the ...
7
votes
1answer
2k views

Difference between ContentObserver and DatasetObserver?

What is difference between ContentObserver and DatasetObserver? When one or another should be used? I get Cursor with single row. I want to be notified about data changes - eg. when row is updated. ...
7
votes
1answer
383 views

MongoDB - Why should I use a cursor instead of iterator_to_array (in PHP)

The PHP documentation for the mongo class says using a cursor instead of iterator_to_array is superior. Why? What benefits/flexibility will I get from that?
7
votes
2answers
322 views

custom cursor outside of browser window

I have a element on my website which is freely resizable. This is done by 4 handles on the edges. On hovering these handles and while resizing the element I want to show the respective resize arrows. ...
7
votes
5answers
641 views

How to use this square cursor in a HTML input field?

How can I use this square cursor ( image below ) in the input tags ?
7
votes
6answers
16k views

Finalizing a Cursor that has not been deactivated or closed non-fatal error

i'm getting a "Finalizing a Cursor that has not been deactivated or closed" error on this piece of code. The code is used to fill a listview. Since it's a non-fatal error , there is no crash and ...
7
votes
3answers
2k views

How to get the start and end points of selection in text area?

i want to get the cursor start and end position of a selected range in a text-field or text-area. i tried lot of functions in various forums. but when the last character of the selection is a new ...
7
votes
7answers
2k views

Which is faster in SQL, While loop, Recursive Stored proc, or Cursor?

Which is faster in SQL, While loop, Recursive Stored proc, or Cursor? I want to optimize the performance in a couple of spots in a stored procedure. The code I'm optimizing formats some strings for ...
7
votes
5answers
7k views

Hide cursor in Chrome (and IE)

I have the following CSS that hides the mouse cursor for anything on the web page. It works perfectly in FireFox but in IE and and Chrome it doesn't work. html { cursor: none; } In ...
7
votes
2answers
2k views

How to get the cursor position in bash?

In a bash script, I want to get the cursor column in a variable. It looks like using the ANSI escape code {ESC}[6n is the only way to get it, for example the following way: # Query the cursor ...
6
votes
1answer
619 views

Pagination Techniques using Google App Engine

I want to implement pagination for my website using the Cursor feature of GAE (Java). However, there is only a forward cursor ; backward cursors are not implemented as of App Engine SDK 1.4.0. So, to ...
6
votes
1answer
322 views

How to intercept execution of a RoutedCommand within the view? (WPF / MVVM)

In a WPF / MVVM application, I am trying to find a code-efficient way to set the main view cursor to Cursors.Wait prior to any lengthy operation and to restore it to the default cursor after ...
6
votes
1answer
2k views

Android: Filtering a SimpleCursorAdapter ListView

Right now, I'm running into issues trying to implement a FilterQueryProvider in my custom SimpleCursorAdapter, since I'm unsure of what to do in the FilterQueryProvider's runQuery function. In other ...
6
votes
3answers
8k views

Android: How to text filter a listview based on a simplecursoradapter?

I have a ListView that is backed by a SimpleCursorAdapter. I'd like to be able to filter the list like you would a contacts list, just by typing, and I came across the textFilterEnabled() Problem ...
6
votes
3answers
2k views

How can I make the cursor turn to the wait cursor?

I have a C# application that has users login to it, and because the hashing algorithm is expensive, it takes a little while to do. How can I display the Wait/Busy Cursor (usually the hourglass) to the ...
6
votes
1answer
638 views

How to override default drag&drop cursors when the darg source is outside my application

In Drag&Drop, if I want to customize the cursors, I can subscribe to GiveFeedback on the drag source and set e.UseDefaultCursors = false, and the render the content I want. But that only work if ...
6
votes
6answers
13k views

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 in my scenario. I am using jQuery to implement command history when user hits up/down arrows. When ...
5
votes
4answers
382 views

Get ID of View in GridView

What I've tried Hello Guys, I first created a database which I've filled with 3 Collumns, RowID, imageID, text. Afterwards I created a GridView which if filled over my database. Now I have created ...
5
votes
2answers
118 views

Vim: do something in a function based on character under a cursor?

I'm writing a function that edits a certain environment in LaTeX. The environment basically looks like this: \begin{quicktikz} ...some stuff... \end{quicktikz} or like this: ...
5
votes
1answer
237 views

how to change color of vim cursor in Visual Studio 2010

I have installed the Vim key bindings extension in Visual Studio 2010. I also have a color scheme setup with a dark background. This creates a problem since Vim key bindings extension has set my ...
5
votes
2answers
543 views

Android Cursor with ORMLite

Is there any way, how to get Cursor for a query, which I am processing with ORMLite Dao object?
5
votes
2answers
190 views

Changing the cursor for hovering over hyperlinks when JEditor.setEditable() is called

I have a JTextPane containing hyperlinks. When it's editable, hyperlinks aren't clickable, and the cursor does not change state when hovering over them (e.g. to a hand). When it is not editable, ...
5
votes
4answers
123 views

Navigate manually with a cursor through nested lists by only providing “left()” and “right()” as commands?

Eventhough I write in python I think the abstract concept is more interesting to me and others. So pseudocode please if you like :) I have a list with items from one of my classes. Lets do it with ...
5
votes
2answers
230 views

How does a database 'cursor' work?

With most drivers for most relational databases, the default and preferred way to access results is to use a cursor or iterator. What I'm guessing is that the database does something like: Runs the ...
5
votes
2answers
129 views

Find the place of a cursor in rectangle

I don't know how to find the place part (one of 4 triangles) of a cursor in a rectangle. This image is more efficient than my explication :s Im in javascript (so the rectangle is a DIV, 0,0 ...
5
votes
3answers
3k views

Iterate through rows from Sqlite-query

I have a table layout that I want to populate with the result from a database query. I use a select all and the query returns four rows of data. I use this code to populate the textviews inside the ...

1 2 3 4 5 32