The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
23 views

HTML5 How to tell when IndexedDB cursor is at end

I am iterating thru an indexedDB data store, adding data to a JavaScript array. How can I tell when the cursor is at the end, so I can sort the array and act on it? onsuccess is called when a row ...
0
votes
1answer
32 views

SQL Server stored procedure / cursor

I wanted to know if this is possible to do in SQL Server: My table looks like this: CREATE TABLE MEMBERSHIP ( Memebership_ID INT IDENTITY(1,1)PRIMARY KEY NOT NULL, MemberShip_Expiry_Date ...
0
votes
1answer
107 views

Re-assigning a Cursors SELECT Statement. SQL Server 2008

For a while I have been searching my resources for a way to re-assign a Cursors SELECT statement with no success. First let me show you my code so far: @KeyString - stores list of ID's seperated by ...
0
votes
4answers
74 views

Exists in cursor where condition is met

I have created a cursor, that returns some data. I then wish to have an if statement in the returned data that checks if the field 'test_field' exists in the cursor where test_field2='A'. I am ...
1
vote
1answer
118 views

Multiple cursors in C#

i'm working in an OpenSim project and I have some troubles. I have an HMD wich will work for the view of the user, and a glove with a tracker for moving the objects, the problem is both of them are ...
0
votes
1answer
32 views

Error using Cursor in MySQL with subquerys

I have the following stored procedure: DECLARE CURSORITO CURSOR FOR SELECT issues.id FROM issues DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done=1; OPEN CURSORITO; REPEAT FETCH CURSORITO ...
0
votes
1answer
32 views

Disable Working in Background Cursor from system ( not application)

I have a application that works at background , and when my application start the appstarting cursor blink once ( everytime ), and it is pretty annoying to see how cursor icon switches many times from ...
0
votes
1answer
57 views

Benthic Golden Oracle: Return multiple ref cursors from procedure for viewing

I'm used to running a procedure and returning one cursor for viewing: var recCursos refcursor; exec user.package.procedure(inputValue1, :recCursor); However, this time I need to run a procedure ...
0
votes
1answer
28 views

How to use pymongo to process huge collections

I was looking all over the web for my problem but kind of got stuck, I'm trying to use pymongo to go over a huge collection on MongoDB using cursors, however it seams that there is no hasNext() ...
0
votes
2answers
52 views

Python: How do I alter a row in a mySQL query result?

I want to iterate through a bunch of mySQL rows in Python and, after I process each row, alter it: cursor.execute("SELECT someNonUniqueColumn,hasBeenProccessed FROM myTable WHERE ...
0
votes
0answers
83 views

android cursor window could not be created from binder

*Hi friends, I have checked linkes Cursor window could not be created from binder I am getting issue of memory while fetching contacts from phone-book, below is my code and I am testing it in OS 4+ ...
0
votes
0answers
30 views

Do the cursors close when DataBaseHelper closes

In my android application I open cursors in main activity and then send them to different Adapters and views, so I'm not allowed to close those cursors before closing my DataBaseHelper (the subclass ...
0
votes
1answer
227 views

How to get setMultiChoiceItems checkboxes in dialogs to update when you use a Sqlite Cursor

When implementing setMultiChoiceItems with a cursor, you have to specify an isCheckedColumn. The problem, as articulated on other sites, is that when users select an item from the list the checkbox ...
0
votes
1answer
70 views

Sort/Merge without cursor

Without using a cursor, I am trying to come up with T-SQL code that would accomplish the following: On the following table, SourceData that has two columns, [ColA] and [ColB], where both are ...
1
vote
1answer
271 views

Cursor.Wait after printDialog

I'm having a little problem. I set the cursor to wait status. After calling the PrintDialog the cursor returns in default status. I can't set the cursor to wait status again. The code is like this: ...
0
votes
0answers
169 views

Method of using cursors and loops to build data trees?

I am new to TSQL, and programming in general. I have been trying to create trees of related data using the script seen below, the goal is to take parts from the table tblParts and assign them in a ...
2
votes
2answers
306 views

Using MySQL : Compare values in two consecutive records in a table using a timestamp field

i have a table tableData (startTime, endTime, data) For example, startTime | endTime | data 2000-01-01 03:00:00 | 2000-01-01 03:00:10 ...
0
votes
1answer
46 views

Oracle: store sql query on object

Is there a way to store a query in an object so that you can use it in a cursor or as a subquery of a bigger query? all this without using execute immediate? Lets supose you want this: set ...
-1
votes
2answers
103 views

how to get the following output using CURSORS IN PLSQL [closed]

EMPNO NAME ----- ----------- 1 A 2 A 3 A 4 B 5 B 6 B 7 C 8 C 9 D I have table like the above , i want the output as below ,using cursors concept(dynamic) EMPNO ...
1
vote
1answer
75 views

CSV file load without cursors

I need to read a CSV file and loop thru all the records and perform some cleaning up of data for few fields and insert them to 3 different tables a,b and c. I don't want cursors, please suggest me a ...
2
votes
1answer
95 views

Whats an alternative to using a cursor as per this example in t-sql

I’m new to SQL (specifically t-sql and microsoft SQL Server 2008 R2) and had a problem my boss advised me to fix using a cursor. The problem being taking records (equating to shifts entered into a ...
3
votes
1answer
156 views

how to call an Oracle procedure

How to call an Oracle stored procedure which takes a string and a date as input and returns a refcursor as output using Clojure? variable rc refcursor; exec SOMEDB.PKG.GETPOSITIONS('ABC', ...
1
vote
2answers
104 views

Oracle Cursor to Step through records

Can someone help me with the below. It is easy writing the cursor but I don't know how to test when the REFVAL changes. My Cursor so far is below. The cursor can’t be grouped on REFVAL. Think of it ...
0
votes
0answers
118 views

Android getting audio files from sdcard giving error SQLiteException: bind or column index out of range

HI Friends I am retrieving audio files from sd card. i am getting an error bind or column index out of range i am going to put some couple of code to refer. static final String[] PROJECTION = new ...
5
votes
1answer
3k views

When should i use for update no wait in cursors

Can any one pls tell me in which case we need to use for update no wait in cursors. With simple example.
1
vote
1answer
515 views

Problems returning cursor from stored procedure as ClientDataset

This question directly relates to my Previous Question. I have a need to create a TClientDataSet on a client from an Oracle 11g cursor contained in a package. I am using Delphi XE2 and DBExpress to ...
0
votes
1answer
215 views

Trigger with cursor for auditing

What I'm trying to do here is to create dynamic trigger: Get column names from table called *original_table* Iterate through the returned column names. If there is a change between old and new ...
-1
votes
1answer
88 views

which are the basic type of cursors in sql [closed]

I want to know basic type FAST_FORWARD in cursor.what is its use? what is the purpose of the statement SET @MyCursor = CURSOR FAST_FORWARD in sql
1
vote
1answer
230 views

Query with Cursors+union+pivot?

I've been trying to figure out how to solve this for a while, with no success. I have 2 tables: 1)QUESTIONS ID (pk) QUES ORD 2)ANSWERS ID (pk) QUES_ID (fk) SURV_ID (fk) ANSW Now I need to ...
0
votes
1answer
147 views

Java : changing cursor size

I created a cursor using: BufferedImage im=null; try { im = ImageIO.read(new File("images/cursor1.jpg")); } catch (IOException ex) { ...
5
votes
2answers
1k views

MYSQL cursor loop, runs one extra round, why?

I'm looping through a cursor result set in a MYSQL stored procedure. I'm facing an issue which is that the loop always run thorough the last record twice. Here is my code, BEGIN DECLARE ...
0
votes
0answers
38 views

CALLING STOREDPROCEDURES IN FUNCTION OR CURSOR

i AM TRYING TO EXECUTE A STORED PROCEDURE WITHIN A FUNCTION CREATE FUNCTION [dbo].[fn_Usp_STUDENTS](@STUD_Id int) RETURNS TABLE AS bEGIN EXECUTE usp_GetTopTwosTUDENTSchemES @STUD_Id RETURN END I ...
0
votes
1answer
154 views

How to use Win32 SetCursor() with WPF resource and HwndHost

We have an HwndHost UIElement in our WPF application which is used to display Direct3d graphics, and the only way I have found to set a cursor for the HwndHost UIElment is to call the Win32 API ...
1
vote
1answer
735 views

How to focus on Webview upon selecting an EditText within same Layout in Android?

I have been trying to add EditTexts and WebView in a layout. The trouble is with focussing on WebView. I have tried to look through the answers on the web and Stackoverflow before deciding to ask one ...
1
vote
1answer
91 views

ORA-1000 Cursor count exceeded. Doesn't replicate on different servers

I have two different IIS servers that are running IIS 7.0 and running the same build of code for my ASP.NET web application with an Oracle back-end. They are both using the same Oracle database but ...
0
votes
2answers
280 views

Android using a cursor on UI thread

I am wondering when or if its ok to use a cursor to get data from a sqlite database on the ui thread. Basically I use a cursorloader to get a cursor. And then I want to do something with that cursor. ...
1
vote
1answer
2k views

Simple teradata stored procedure

The web seems a bit short on working examples for something that should be quite common. A plain Jane example of "Get me some records". This is my first ever Stored proc and all I want is to see some ...
1
vote
1answer
117 views

Selecting all mouse cursor types (one by one)

I'm developing a WPF application in C# and I want to know if is there any way to test all mouse cursor types. For changing the type of cursor I do this: Mouse.OverrideCursor = Cursors.Cross; I ...
0
votes
1answer
158 views

Setting Control.Cursor isn't working as expected

I have a DevExpress chart control (although it may as well be a standard control...), when I set the cursor on MouseMove, although the correct line is being hit when I expect it to be the cursor isn't ...
0
votes
0answers
847 views

how to replace cursor code with CTE in sql server 2008

I have a condition where I need to pull id's from one master table and then based on that value pull values from two different tables and then update/insert into third table with these values. I am ...
0
votes
1answer
504 views

How to use many cursors in a single store procedure in MySQL

I want to create a store procedure that has ability to do multi-tasks. Then it got error message below Error Code: 1338 Cursor declaration after handler declaration Please look my store procedure ...
2
votes
5answers
601 views

Android database connections and cursors oh my

I have read plenty of blogs and tutorials on how to create and use database connections when working with android. Although I have plenty of working examples, different implementations result in ...
0
votes
2answers
134 views

Using cursors to check each column in row and return row for each match

I am fixing a previous developers stored procedure designed to join a bunch of tables based on a string match criteria, then search through the joined table and return the information along with a ...
0
votes
1answer
352 views

How to set WaitCursor cursor over disabled panel in WinForms

I'm trying to do this panel.Enabled = false; // to disable all controls on panel at once panel.Cursor = Cursors.WaitCursor; and debugger shows that panel.Cursor is WaitCursor, but when I move a ...
-1
votes
2answers
289 views

Need to rewrite stored procedure to remove cursors

I have discovered this job which is taking 6 hours to run and killing my poor old server. In desperately need to edit this code to remove the cursors, but its beyond my coding skills a little, can ...
0
votes
1answer
253 views

Using string as comma separated query

I'm trying to use a comma separated string as part of a query in a stored procedure but can't get it to work. I want the string to be: 'db1','db2','db3' This is an example of the procedure (I've ...
1
vote
1answer
261 views

SHOW SLAVE STATUS in stored procedure

I'm fairly new to mysql stored procedures and I need to be able to access the results of SHOW SLAVE STATUS from within the procedure. I searched the web but can't seem to be able to find it. This is ...
2
votes
1answer
413 views

Android - Using a Cursor returned from a LoaderManager in an AsyncTask

I have a cursor returned on an onLoadFinished callback (from LoaderManager.LoaderCallbacks), and I want to do some (possibly costly) post-processing on this cursor. So, I'm firing off an AsyncTask ...
0
votes
1answer
81 views

in MySQL, how to use information from one table to update another table

I have two tables: teams, and persons. table teams have three columns, id, name, leader table persons have these columns: hash, team_id teams.leader is a MD5 hash that must match persons.hash in ...
1
vote
1answer
283 views

Android: Creating two vertical line cursors using aChartEngine Line Graph

So basically I want to create two cursors on our line graph depicted by vertical lines. Cursor A and Cursor B. We need the cursors to trace along the points of the graph on the X-axis (coloring the ...

1 2 3 4 5 6