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

4
votes
0answers
528 views

Notify data change in a cursor without using a ContentProvider

could i notify a cursor after a new record inserted in a table without using a contentProvider i saw this question he said that he used the requery() method and the first answer use a ...
2
votes
0answers
70 views

Cursor waits in the wrong window

I am developing a simple chat. The chat client is based on ncurses, and has two window: The "input" window, where users enter messages. The "output" window, where users see messages by other users. ...
2
votes
0answers
98 views

C# - DrawIcon not using cursor mask when drawing to image (Example for I-beam cursor)

If i use DrawIcon when taking screenshot it can draw I-beam cursor with mask properly but if i want to use DrawIcon on any image then masking not works. Example in here DrawIcon works properly: ...
2
votes
0answers
130 views

Interacting with text box with Lua

There is this tricky challenge I have been tearing myself with over the last three to four weeks, and I think it has come to a time I just have to seek for advice about the how to's. The problem is, ...
2
votes
0answers
90 views

(blink-cursor-mode 0) in Eclipse on OSX

As someone who has been editting on emacs using finger reflexes rather than by conscious intent, I was pleasantly surprised by what can be done with Eclipse but not emacs. Using C-m to switch to full ...
2
votes
0answers
141 views

Cursor stuck at corner of window

Recently I have bought a Trust "Fresco Widescreen Tablet" ( http://www.trust.com/products/product.aspx?artnr=18002 ). At first i had no problems using it, plug and play tablet, it worked nice. After ...
2
votes
0answers
195 views

MATLAB : why am I not getting the SQL result back in the cursor object?

I'm using MATLAB R2012b with Database Toolbox to access SQL Server 2012. I learned that when using TRY/CATCH, SELECT @@ROWCOUNT has to be piped through a declared variable, to return the rows affected ...
2
votes
0answers
97 views

Can't get selected item from spinner populated via a DB

I'm trying to get the currently selected item in a spinner which has been populated previously from a database. Here is my code which handles the selection: spinner.setOnItemSelectedListener(new ...
2
votes
0answers
105 views

How to watch for changes in [NSCursor currentCursor]?

I've got an app with a custom cursor which I achieved using a custom wrapper for NSCursor (most of the main code is designed to be OS portable, so above that I pretend the NSCursor is a Windows-style ...
2
votes
0answers
38 views

getTitle EditText and Database cursor

I am using an EditText as a search field and trying to get the users input from there read into my Cursor. My code crashes because editText shows as an int and not a long. If I manually input a ...
2
votes
0answers
310 views

Get Cursor Position Android Keyboard

I am working on an Android soft keyboard and was wondering, is there a way for the keyboard to get the current cursor position? I am currently using the following code: ...
2
votes
0answers
804 views

Hide Cursor Everywhere

I'm using C# and wish to hide the cursor globally. I can use Cursor.Hide() to hide the cursor while it is over my application, but I want to hide it completely, no matter where it is. Is this ...
2
votes
0answers
292 views

move cursor for edittext inside a scrollview

I have an edit text that I need within a scrollview. Before I added a scrollview that wrapped the edittext, I was able to touch on the edit text box to move the cursor, and I could long press it to ...
2
votes
0answers
323 views

Update Cursor Adapter on single row

I render an UI rely on Cursor entries, meanwhile is can happen that an update of an row happen in my ContentProvider, so I use getContext().getContentResolver().notifyChange(uri, null); to inform the ...
2
votes
0answers
1k views

mouse cursor disappears flex/flash ui on mac safari

the issue we are facing is that the mouse cursor disappears when a user is using the app in a safari on MAC. The app UI is in flex 4actionscript running in the flash player. So whenever the cursor ...
2
votes
0answers
229 views

Requerying SQL Cursors on Android

Related: SQL cursors in android Cursors retrieved through SQL functions don't notify observers when the data on disk changes. What is the best way to watch for changes to tables in the database? ...
1
vote
0answers
57 views

How should I use the cursor in the Function?

I want to use the cursor in the package's function like this: PACKAGE PKG AS TYPE RESULT_T IS TABLE OF varchar2(30); FUNCTION GENERATEF RETURN RESULT_T PIPELINED; END PKG; / create or replace ...
1
vote
0answers
14 views

Get cursor position in ScrollPane component

I have a JavaFX app where a Vbox contains multiple textarea children. The VBox is then added to a ScrollPane. Now if the user adds multiple lines the scrollPane does not automatically scroll to the ...
1
vote
0answers
45 views

How to optimize usage of pipelined, weakly typed ref cursor

I am having some trouble with a procedure; when run for “big” sets (800+ parents, 1300+ children), it is very slow (30 - 60 secs). Basic idea is to fetch all parent records (and their respective ...
1
vote
0answers
63 views

Can I change mouse cursor while clicked on IE with jquery?

I know that Internet Explorer triggers cursor changes only after the mouse moves, but it seems like it prevents such changes while the mouse is clicked. Here's an example I created: ...
1
vote
0answers
76 views

Set the “drag forbidden/not allowed” cursor

I have a google map and need to drag stuff onto it. It works fine, but the cursor changes to the not-allowed (or forbidden) cursor. is there a way to change that, or avoid it altogether the way I ...
1
vote
0answers
29 views

Closing cursors across JAR boundaries

I use a content provider/resolver, have a separate project/lib that provides a number of DB helper methods. I have a second project/lib that does handy things with a cursor. Imagine as such DB Helper ...
1
vote
0answers
75 views

Failed to retrieve the message from inbox in the real device

I am trying to get the inbox and sent messages. For this I have written my code below. My code runs well in the emulator but it doesn't work when I try to run it on a real device. It fails to collect ...
1
vote
0answers
144 views

Oracle PL SQL procedure to disaggregate value from parent to child

I am working on a case where I have Parent-Child hierarchy of products: [highest level] Raw Material RM > Work in Progress WIP > End Product EP [lowest level] Orders for End Products for specific ...
1
vote
0answers
25 views

Implementin Undo-Redo in Math Editor

I need to implement an Undo/Redo system in a web application which is using MathQuill JavaScript Library to define events in the text editor. Whilst I can implement a custom solution myself using an ...
1
vote
0answers
48 views

How to set default NSDragOperation when user is dragging?

I am making a drop & drop code. I used NSDragOperationGeneric | NSDragOperationMove | NSDragOperationCopy | NSDragOperationLink mode for all drag & drop code. My problem is the mouse cursor is ...
1
vote
0answers
76 views

Android strange sqlite bug

i have an android application in which i' m using cursors and listviews. I have developed this app when running android version was 2.1. I had decide to not use StartmanagingCursor() and ...
1
vote
0answers
46 views

How to get the number of tracks from playlist?

Can anyone tell me how to get the number of members of playlist? I tried this but it does not work: int PlayListCount = cursor.getInt(cursor.getColumnIndex(MediaStore.Audio.Playlists._COUNT)); It ...
1
vote
0answers
77 views

How to delete all calendar events which are starting with equal text without deleting other calendar events?

The link "Delete calendar entries" solved my problem deleting all entries in the calendar. Take a look at the code: Cursor cursor; cursor = resolver.query(eventsUri, new String[]{ "_id" }, ...
1
vote
0answers
141 views

Using a SELECT TABLE.COLUMN, CURSOR(SELECT OTHER_STUFF) in iReport

I am tasked with moving some existing PL/SQL queries into Jasper Server by making some rudimentary JasperReports. So far this has been straightforward, but I have come across a query that has the ...
1
vote
0answers
42 views

Tapping inside a edittext control doesn't put the caret where I tapped. Anyone know why

I have an EditText control on my screen. When I tap on it, the keyboard shows up, lickety split. But my carrot is not where I tapped. The cursor is at the top right... When I type it of course flows ...
1
vote
0answers
221 views

Cursor position GetCursorPos() in C++ returns linking error

Trying to get this to work Using VisualStudio VC++ I'm trying to detect the cursor's position, take both x and y and use it for stuff, but no matter what - linking errors occur. public: System::Void ...
1
vote
0answers
94 views

Mouse move message for child window are intercepted by parent, how to get them in child window's callback

I was writing an plugin of Adobe Illustrator. The Illustator UI has many non-modal dialogs (floating panels) in main window. I want to deal with the WM_MOUSEMOVE message of one panel. So I find the ...
1
vote
0answers
239 views

use cursor for show data in listview

I write a program that can show data that stored in database in listview by cursor.but in runtime it gives me force close.This is my logcat and code,when i run app in device it gives me force close ...
1
vote
0answers
934 views

Android CursorWrapperInner: Cursor finalized without prior close()

in my application i keep getting this warning in my log: 12-17 20:17:20.979: W/CursorWrapperInner(3715): Cursor finalized without prior close(). when using: StrictMode.setVmPolicy(new ...
1
vote
0answers
96 views

Left Join tables on column sum to column value

I have two tables; SamplesTbl that contains samples every 5 seconds of a bike ride, and a RxTbl that contains the prescribed stages and other values of a bike ride: SamplesTbl ( SamplesID int ...
1
vote
0answers
69 views

database data works fine on android 2.2 but not work on 2.3 higher

i'm new here and new to android too...so i started to develop my first app for android...that load data from in a custom adapter...and when a try to retrieve data from my database, the rawquery that i ...
1
vote
0answers
99 views

flotchart: change cursors

I would like to change cursor shape under a scatterplot using http://www.flotcharts.org/ by example I woulkd like to change cursor shape to crosshair when selecting a selection to zoom, etc. or ...
1
vote
0answers
43 views

Cursor visually in place, but functionally not

My cursor is right where it needs to be in my text editor - visually. When I continue typing from the keyboard - nothing is shown. The cursor is in the browser (when I press up-down arrow keys from ...
1
vote
0answers
24 views

Do I have any alternatives to matching on a hash or using a cursor?

Still new to sql development, but learning a lot fast. This scenario would be solved with entity framework, but that is not an option. Need to insert data into two tables. Below describes the ...
1
vote
0answers
144 views

Convert a Oracle Stored procedure with “Connect By” and “TYPE” to MySQL

I have difficulty to convert an oracle SP to the one in MySQL. Especially, for "Connect by" and "TYPE". Here is the problem to solve using an Oracle stored procedure. There is a table with 3 columns ...
1
vote
0answers
148 views

How override cursor when draging out the app?

Tell me please. Is it posible to override standart "Stop" (crossed circle) cursor when I drag and drop outside the main window? I have very simple code and that is enough for me. I drag PushButton ...
1
vote
0answers
546 views

Handling Oracle Stored Procedure IN OUT Cursor using JDBC with JBoss 5.1

I'm having a lot of issues trying to handle an IN OUT cursor for a stored procedure being called for an Oracle DB using JDBC. You can see below how I've been calling/trying to call the stored ...
1
vote
0answers
98 views

cursor to pointer on image in e-mail newsletter

When I make a newsletter with a linked image in it, the css style cursor:pointer; doesn't work on the image. Any ideas how to solve this? I think when people see the 'hand-cursor' they're more likely ...
1
vote
0answers
204 views

Show a cursor without using real mouse on Android 4.0+

A mouse cursor can appear on Android TV when mouse is connected. How can I let cursor show without using real mouse?
1
vote
0answers
147 views

Get The Company name from the contact using specify contact id in android

hi i need to fetch the company name from a specific contact using the contact id .I have the code to get the entire contact id of the all contact details.I search the web to get the details of ...
1
vote
0answers
436 views

Change cursor over HTML5 Canvas

I have a canvas in my site and an image rotation function. So I want to change the mouse cursor when I am trying to rotate the image. I tried this one for the beginning, <canvas id="draw" ...
1
vote
0answers
74 views

Generalising Oracle Static Cursors

I am creating an OLAP-like package in Oracle where you call a main, controlling function that assembles its returning output table by making numerous left joins. These joined tables are defined in ...
1
vote
0answers
308 views

Select * return empty cursor

I insert a record to my table. It success because .insert() return new row id which I use that id to query with where cause _id = id. IT SUCCESS I GOT ROW RETURN But when I query with SELECT * FROM ...
1
vote
0answers
159 views

setSelectionRange workaround doesn't work for android 4.0.3

I am trying to mask the phone number as the user types. I have used the javascript code below with jquery and the setTimeout workaround successfully on android 2.x devices, but I have not found a ...

1 2 3 4 5 16