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.
0
votes
0answers
7 views
Freebase: How to use the parameter “cursor”with javascript
Freebase: (javascript) How to use the parameter "cursor" in a query? In the following query, I tried to put the cursor variable within the service_url adding '& cursor' at the end but it does not ...
0
votes
0answers
17 views
HTML/CSS - scroll wihout requiring cursor focus
Please see URL:
http://198.58.104.104/localserver/test.html
The page has 2 columns. When the page loads, one cannot scroll up or down, without the use clicking the cursor once somewhere on the ...
0
votes
1answer
35 views
Jump to last line, but stay in the same column
In Vim, it is possible to jump to the last line with G (or the first line with gg), but that movement also jumps to the first non-space character.
Is there a keybinding to jump to the first line (or ...
0
votes
1answer
18 views
Column does not exist
I hava DB
public static final String DB_TABLE_EXERCISES = "exercises";
public static final String EXERCISE_COLUMN_ID = "_id";
public static final String EXERCISE_NAME = "exercise_name";
public static ...
0
votes
0answers
27 views
How to create table with formulas and use them to calculate data(2)
I have a result table msCurrent with more than 1000 products.
At pic.1 you can see first 16 of them. At the beggining of the process this table is empty.
The data for products 1-6 is imported to ...
0
votes
0answers
6 views
Android: Fetching Video from gallery using Cursor
I am building an app in which i am trying to fetch video from android gallery and display it in my dashboard according to date clicked by the user on calender. Video thumbnail is being displayed after ...
0
votes
1answer
19 views
Photo Gallery with mouse navigation
I'm trying to build a photo gallery that uses the mouse to navigate through the images,where the cursor changes when you hover left, center, or right. on click of left or right of the image the images ...
0
votes
1answer
37 views
How do we get the border size of a window?
I am drawing a rectangle (in OpenGL) and the corner are based on the cursor position. I modify the pixel position to a float position, but i need the width and height (Which is save somewhere).
So i ...
0
votes
1answer
28 views
Am I saving data to my sqllite database correctly?
First I have my sql statement
private static final String DATABASE_CREATE_BADGES =
"create table if not exists badges (id integer primary key autoincrement, "
+ "name VARCHAR, ...
0
votes
1answer
45 views
using a Cursor to get sqllite data
I am trying to get some data using a cursor but I dont really know if I am doing it right as the row and column of data I am trying to get is returning null.
Here is where I am storing the data:
...
0
votes
2answers
44 views
MSSQL avoiding Cursors
iam just reading about (MSSQL) Cursors, that I should avoid them as much as I can :)
Is there ALWAYS a way to write a query/function/procedure without Cursors?
I have found some examples on the Net, ...
0
votes
1answer
36 views
JDBC ResultSet Cusor Position
I have inherited some third party code using an old version of org.gjt.mm.mysql.Driver jdbc mysql driver class against a mysql database.
The code appears to perform an executeQuery, storing the ...
1
vote
1answer
38 views
mysql Case statement not working in cursor
The case statement in the cursor does not work, however the select sql by itself works fine. Please advice whats the issue
/* cursor for summed txns fee amounts of merchants */
DECLARE sumCursor ...
0
votes
0answers
21 views
Sublime like Multiple Cursors in HTML5
do you have an idea how to get the Sublime or Cloud 9 like Multiple Cursors functionality to the browser?
Is there any jQuery Plugin to do it or has anyone the Idea?
I want multiple cursors in a ...
0
votes
0answers
17 views
lwjgl cursor is not set on the centre of the mouse pointer amongst other LWJGL cursor issues
I am having some trouble with LWJGL cursors. After much confusion I have figured out how to get it to appear, but it is not centered on the mouse pointer.
In addition it appears over the edge of the ...
0
votes
0answers
10 views
pl/sql update procedure with cursor gets stuck
i wrote a program that uses cursor in order to update some row in these table- here is the program:
declare
-- Local variables here
cursor s is
(select unique *
from ...
0
votes
2answers
23 views
Move a cursor position in iframe via javascript
i want some code to move the cursor position in an IFrame via Javascript or jquery.
Really it will help me a lot.
1
vote
1answer
21 views
SQLite cursor in Python with statement
I have the following code:
def executeOne(self, query, parameters):
with self.connection as cursor:
cursor.execute(query, parameters)
return cursor.fetchone()
When I ...
0
votes
1answer
47 views
How to use cursors for search in gae?
When I RTFM, I can't understand how to specify paginated searches using the technique described in the manual. Here's my code:
def find_documents(query_string, limit, cursor):
try:
...
0
votes
1answer
20 views
list_for_each_entry reset cursor
Hi I am new in this and I trying to use list_for_each_entry to iterate over a list. It looks something like this
list_for_each_entry(pos, head, member){
if (something == pos.x)
//reset the ...
0
votes
2answers
72 views
SQL Server : call stored procedure with side effects for each row without using a cursor
Before you say this is identical to SQL Call Stored Procedure for each Row without using a cursor let me clarify my question:
The stored procedure does have side effects. In fact, it's all about ...
0
votes
1answer
16 views
Combine two cursors (merge?), by keeping all distinct IDs from both cursors
Say I have two cursors(called A and B). A and B has some columns identical, but the only true relation between the two is a single column, call it specialID. Cursor A is filled via a ContentProvider, ...
0
votes
1answer
38 views
Load selected fields from ArrayList to ListView.
I would like to load only selected fields from my ArrayList to ListView.
I couldn't find that example so I ask.
I have an ArrayList of a structure as follows:
ArrayList<LogInfo> logInfoArray
...
1
vote
1answer
22 views
closing Cursor in SQLite database explicitly, needed or not needed?
I understand that a after a database is closed, the cursor becomes "invalid", does that also close the cursor at the same time? Does that avoid having to do what is shown below?
example 1
public ...
0
votes
1answer
32 views
How to write a trigger to move data I want to delete from a table to antother before deleting it
I wrote this trigger which monitor a table called employees , and when deleting an employee from that table the trigger should fire , and copy the employee we want to delete from the table employees ...
0
votes
1answer
63 views
Using UPDATE cursor in PL/SQL
As far as I can see, I can make an UPDATE in PL/SQL without using a CURSOR.
For example:
CREATE OR REPLACE PROCEDURE update_my_table (id NUMBER)
AS
...
BEGIN
...
UPDATE my_table SET ...
1
vote
3answers
27 views
javascript cursor image position
i change my cursor background to image file , the cursor in top of image
$(".mainDiv").attr("style", "cursor: url(./images/myImage.png) ,auto");
How to set the cursor in bottom of image ?
0
votes
0answers
19 views
Retrieving an Oracle cursor from a Stored Procedure using Access 2003
I need to retrieve data from an Oracle Stored Procedure. The stored Procedure is as follows:
CREATE OR REPLACE PROCEDURE ATP_CONTRACT_SP
(
p_ContractNumber IN VARCHAR2,
p_ResultSet OUT ...
-1
votes
1answer
27 views
Windows LoadCursor - Does it return the same HCURSOR value each time?
If I call LoadCursor multiple times - loading both my own ones or the standard ones - does it return the same HCURSOR value if the ipCursorName parameter to the function is the same?
...
1
vote
2answers
16 views
How to eliminate this cursor (causing a deadlock)
We have got a stored procedure. Part of it is executing a cursor over a select statement that involves 6 different tables with inner joins.
In the cursor body we execute 3 other stored procedures ...
0
votes
0answers
31 views
How to refresh my Views
i have a question about refreshing my listview with new data in my cursor.
The Cursor.requery() method works quite good but it is deprecated so i'm trying another approach but that does not work very ...
1
vote
2answers
26 views
Creating a custom cursor for my website
I've never created a custom cursor before, and I'm having a little trouble with it. Maybe I'm doing this completely wrong, but I tried opening up an icon in photoshop, and saving it as .gif and .cur, ...
0
votes
0answers
18 views
Cursor shape changed even over an overlapping rectangle in QML
With the following code, the green rectangle entirely overlaps the green rectangle, but when the mouse is over the (hidden) green rectangle, my cursor shape is still changed.
Any idea to prevent this ...
0
votes
0answers
25 views
hardware mouse cursor for android
I'm writting a hardware mouse cursor pointer for jellybean. I know clearly how to implement a hardware cursor in normal linux driver for my development board. However, there is no hardware adapter ...
0
votes
0answers
16 views
Twitter4j shows Following count of 10 less than Twitter website Following count
The Twitter website shows that I'm following 4,615 accounts. However, the twitter4J code below returns a value that is exactly 10 short of the number shown on the twitter website. I've unfollowed a ...
0
votes
2answers
40 views
how to insert record in between particular record in SQL
suppose i have a customer balance details table. For Example :
CustID CustName CustDate Amt Bal
1 DP 1/5/2013 1000 1000
1 DP 5/5/2013 100 1100
1 ...
-1
votes
1answer
24 views
ws02 dataservice use parameter IN ORACLE_REF_CURSOR
I use WSO2 DataService for my web services. How can declare a parameter with:
parameter IN
type ORACLE_REF_CURSOR
I do not have any problem with OUT parameter.
0
votes
3answers
40 views
How to get the div in which the cursor or caret is placed?
I have three contenteditabledivs and I want to know ,in which div the user has placed the cursor or caret through tab key or mouse click,
<div contenteditable="true"></div>
...
1
vote
1answer
29 views
Couldn't read row 384, col 47 from CursorWindow. Make sure the Cursor is initialized correctly
I'm reading some data from Android calendar and sometimes I got strange crash reports from users like:
java.lang.IllegalStateException: Couldn't read row 384, col 47 from CursorWindow.
Make sure the ...
0
votes
0answers
8 views
terminator terminal — transparent cursor background with block cursor
I use Terminator as my terminal of choice. Unfortunately the cursor is either a solid block, an underline, or a |-Beam, at least thats choosable from the preferences.
I want to have a cursor with no ...
2
votes
2answers
45 views
Copy one column value to another
I have a table that has the following values
sno package id
66 250 111
66 0 100
66 0 99
66 0 88
67 270 225
67 267 111
67 ...
0
votes
1answer
15 views
Title of ContextMenu from ListView item
I am trying to set the title of the ContextMenu from the selected item in the ListView. However everytime I run this on the emulator, it crashes and I have to Force Close it. DDMS shows that an ...
0
votes
1answer
40 views
Run plpgsql program to update the data in table
I am using Postgres 8.4. I want to update the data from using plpgsql and a cursor. When I try to run the plpgsql it generates an error.
CREATE OR REPLACE FUNCTION updateScore()
RETURNS void AS
$$
...
0
votes
4answers
176 views
how to display images saved in sdcard folder in android [closed]
As i am working on displaying images saved in sdcard folder, I found the following link.
Displaying images in gridview from SDCard.
I am using the following code to get images from specified ...
0
votes
0answers
30 views
Attempting to change cursor image with a .BAT file
I'm trying to change the default Windows cursor from the default arrow to a custom one. The thing is, I need to be able to do it from a batch file. One thing that worked before was to simply ...
0
votes
1answer
47 views
getItem(position) returns same object for different values of position
I have a adapter with the following piece of (test) code in public View getView(int position, View convertView, ViewGroup parent):
Cursor itemCursor = (Cursor) getItem(position);
Cursor ...
0
votes
0answers
28 views
Populate ListView from SQLiteDate sorting by Distance from user
I am working on my first app, and want to make a list that will pull venues from a database and then sort them by distance from the user positions. I haven't done the coding to get the users position ...
0
votes
0answers
35 views
Change cursor using User32.dll
I have a login form that disappears when logged in, a few moments later will the Main form be shown.
Now I want to show a waitcursor, when there is no form on screen.
I tried setting the cursor at ...
0
votes
0answers
22 views
Custom cursors not shown in Safari
I set the cursor as follow:
cursor: url(https://my.server.com/resources/cursors/cursor_select.cur), crosshair;
It works on all browsers, except Safari.
What might be the solution?
0
votes
3answers
34 views
iOS6 Putting Cursor in SPecific Text Field
I have three text input fields that I clear after the user has added data to a database:
self.textMonth.text = @"";
self.textTemp.text = @"";
self.textCloud.text = @"";
How to I put the ...






