Top "Cursors" questions

Cursors are used by database programmers to process individual rows returned by database system queries.

how do oracle stored procedures (w/ cursors) work?

I have a following oracle stored procedure CREATE OR REPLACE PROCEDURE getRejectedReasons ( p_cursor IN OUT SYS_REFCURSOR) AS BEGIN …

oracle stored-procedures cursors fetch
C# WaitCursor while form loads

I'm having a form that takes a few seconds to finally display. This form is called through: using (ResultsForm frm = …

c# winforms forms cursors
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 …

apache-flex cursors
Union data from cursors into one

I have stored procedure which executes another stored procedure several times. I need union and return data, which I have …

oracle plsql oracle11g cursors
SQL Server Cursor To Include the Value in Select

I have a SELECT statement returning a set of rows. From each row, I need to get a value of …

sql cursors
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 …

python performance rdbms cursors psycopg2
Using Custom Colored Cursors in a C# Windows Application

I am developing a SDG (Single Display Groupware) application, and for that I need multiple cursors (to the simplest of …

c# custom-controls cursors
Creating SQL UPDATE statements on the fly

I am in the midst of updating data in multiple tables. Currently I have a table that has one field, "…

sql sql-server tsql cursors
How to set Cursor type in JDBC?

I'm running tomcat and have some jsp pages that display a subset of a table. I show 20 rows at a …

java oracle jdbc cursors
use oracle cursor within a sys_refcursor

I've got a PL/SQL package that returns a sys_refcursor based on the id that you pass it. I'd …

oracle plsql cursors