當前位置:首頁 » 數據倉庫 » 資料庫cursor
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

資料庫cursor

發布時間: 2023-01-04 01:14:04

❶ 為什麼資料庫有效連接但cursor失效

太奇怪了,有時能獲取數據,有時獲取不了數據,把sql單獨執行可以正常獲取數據,測試了許久一直解決不了問題。後來看到了一句話,知道問題所在。多次使用cursor.fetchall(),會導致獲取不到數據,cursor.fetchall()會把所有數據獲取完,當再次調用cursor.fetchall()獲取數據時,存在獲取不到數據的可能。解決方法:把cursor.fetchall()替換為cursor.fetchone()。

❷ 資料庫中cursor是什麼

cursor 是游標, 對按條件查詢出來的結果集進行逐條遍歷操作

你編寫過和資料庫操作的程序沒,還有你知道資料庫里的存儲過程沒,如果要你在存儲過程裡面進行一些復雜的操作改怎麼辦,查詢出來的可能是多條數據,然後對每條數據進行操作該怎麼辦,游標在這就有用了

❸ Cursor游標是什麼有什麼作用

在資料庫中,游標是一個十分重要的概念。游標提供了一種對從表中檢索出的數據進行操作的靈活手段,就本質而言,游標實際上是一種能從包括多條數據記錄的結果集中每次提取一條記錄的機制。游標總是與一條SQL選擇語句相關聯因為游標由結果集(可以是零條、一條或由相關的選擇語句檢索出的多條記錄)和結果集中指向特定記錄的游標位置組成。當決定對結果集進行處理時,必須聲明一個指向該結果集的游標。如果曾經用C語言寫過對文件進行處理的程序,那麼游標就像您打開文件所得到的文件句柄一樣,只要文件打開成功,該文件句柄就可代表該文件。對於游標而言,其道理是相同的。可見游標能夠實現按與傳統程序讀取平面文件類似的方式處理來自基礎表的結果集,從而把表中數據以平面文件的形式呈現給程序。我們知道關系資料庫管理系統實質是面向集合的,在MS SQL SERVER中並沒有一種描述表中單一記錄的表達形式,除非使用where子句來限制只有一條記錄被選中。因此我們必須藉助於游標來進行面向單條記錄的數據處理。由此可見,游標允許應用程序對查詢語句select返回的行結果集中每一行進行相同或不同的操作,而不是一次對整個結果集進行同一種操作;它還提供對基於游標位置而對表中數據進行刪除或更新的能力;而且,正是游標把作為面向集合的資料庫管理系統和面向行的程序設計兩者聯系起來,使兩個數據處理方式能夠進行溝通。在資料庫開發過程中,當你檢索的數據只是一條記錄時,你所編寫的事務語句代碼往往使用SELECT INSERT語句。但是我們常常會遇到這樣情況,即從某一結果集中逐一地讀取一條記錄。那麼如何解決這種問題呢?游標為我們提供了一種極為優秀的解決方案——那就是使用游標。

❹ Oracle資料庫游標的類型

游標是SQL的一個內存工作區 由系統或用戶以變數的形式定義 游標的作用就是用於臨時存儲從資料庫中提取的數據塊

Oracle資料庫的Cursor類型包含三種 靜態游標 分為顯式(explicit)游標和隱式(implicit)游標 REF游標 是一種引用類型 類似於指針

測試數據

create table student(sno number primary key sname varchar ( ))

declare i number:= ;

beginwhile i<=

loop

insert into student(sno sname) values (i name ||to_char(i))

i:=i+ ;

end loop;

end;

隱式游標屬性

SQL%ROWCOUNT 整型代表DML語句成功執行的數據行數

SQL%FOUND 布爾型值為TRUE代表插入 刪除 更新或單行查詢操作成功

SQL%NOTFOUND 布爾型與SQL%FOUND屬性返回值相反

SQL%ISOPEN 布爾型DML執行過程中為真 結束後為假

declarebegin update student set sname = name ||to_char(sno* ) where sname= name ;

if sql%found then

dbms_output put_line( name is updated )

else

dbms_output put_line( 沒有記錄 )

end if;

end;

declare

begin

for names in (select * from student) loop

dbms_output put_line(names sname)

end loop;

exception when others then

dbms_output put_line(sqlerrm)

end;

顯式游標屬性

%ROWCOUNT 獲得FETCH語句返回的數據行數

%FOUND 最近的FETCH語句返回一行數據則為真 否則為假

%NOTFOUND 布爾型 與%FOUND屬性返回值相反

%ISOPEN 布爾型 游標已經打開時值為真 否則為假

對於顯式游標的運用分為四個步驟

a 定義游標 Cursor [Cursor Name] IS;

b 打開游標 Open [Cursor Name];

c 操作數據 Fetch [Cursor name];

d 關閉游標 Close [Cursor Name];

典型顯式游標

declare cursor cur_rs is select * from student; sinfo student%rowtype;

begin open cur_rs;

loop

fetch cur_rs into sinfo;

exit when cur_rs%%notfound;

dbms_output put_line(sinfo sname)

end loop;

exception when others then

dbms_output put_line(sqlerrm)

end;

帶參數open的顯式cursor:

declare cursor cur_rs(in_name varchar ) is select *

from student where sname=in_name;

begin for sinfo in cur_rs( sname ) loop

dbms_output put_line(sinfo sname)

end loop;

exception when others then

dbms_output put_line(sqlerrm)

end;

使用current of語句執行update或delete操作

declare

cursor cur_rs is select * from student for update;

begin for sinfo in cur_rs loop

update student set sname=sname|| xx where current of cur_rs;

end loop;

mit;

exception when others then

dbms_output put_line(sqlerrm)

end;

REF游標 用於處理運行時才能確定的動態sql查詢結果 利用REF CURSOR 可以在程序間傳遞結果集(一個程序里打開游標變數 在另外的程序里處理數據)

也可以利用REF CURSOR實現BULK SQL 提高SQL性能

REF CURSOR分兩種 Strong REF CURSOR 和 Weak REF CURSOR

Strong REF CURSOR: 指定retrun type CURSOR變數的類型必須和return type一致

Weak REF CURSOR: 不指定return type 能和任何類型的CURSOR變數匹配

運行時根據動態sql查詢結果遍歷

create or replace package pkg_test as

type student_refcursor_type is ref cursor return student%rowtype;

procere student_rs_loop(cur_rs IN student_refcursor_type)

end pkg_test ;

create or replace package body pkg_test as

procere student_rs_loop(cur_rs IN student_refcursor_type) is

std student%rowtype;

begin loop

fetch cur_rs into std;

exit when cur_rs%NOTFOUND;

dbms_output put_line(std sname)

end loop;

end student_rs_loop;

end pkg_test ;

declare stdRefCur pkg_test student_refcursor_type;

begin for i in loop

dbms_output put_line( Student NO= || i)

open stdRefCur for select * from student where sno=i;

pkg_test student_rs_loop(stdRefCur)

end loop;

exception when others then dbms_output put_line(sqlerrm)

close stdRefCur;

end;

使用FORALL和BULK COLLECT子句 利用BULK SQL可以減少PLSQL Engine和SQL Engine之間的通信開銷 提高性能

加速INSERT UPDATE DELETE語句的執行 也就是用FORALL語句來替代循環語句

加速SELECT 用BULK COLLECT INTO 來替代INTO

create table

student_tmp as select sno

sname from student where = ;

刪除主鍵約束 alter table student drop constraint SYS_C ;

執行兩遍插入 insert into student select * from student where sno= ;

declare cursor cur_std(stdid student sno%type) is select sno

sname from student where sno=stdid;

type student_table_type is table of cur_std%rowtype index by pls_integer;

student_table student_table_type;

begin

open cur_std( )

fetch cur_std bulk collect into student_table;

close cur_std;

for i in unt loop

dbms_output put_line(student_table(i) sno ||

|| student_table(i) sname)

end loop;

forall i in student_table firststudent_table last

insert into student_tmp values(student_table(i) sno student_table(i) sname)

mit;

end;

lishixin/Article/program/Oracle/201311/17358

❺ android資料庫怎麼樣把Cursor的值 賦值給字元串

  • 調用cursor的getString方法(參考代碼見下面)

    在while循環里,如果cursor.moveToNext()能移動到下一條

    就代表游標對象里有數據。然後調用cursor的getString()方法把cursor的復制給字元串。

  • publicList<BlackBean>findAll(){
    SQLiteDatabasedb=helper.getReadableDatabase();
    List<BlackBean>blackBeans=newArrayList<BlackBean>();
    Cursorcursor=db.query("blackNumber",newString[]{"number","mode"},null,null,null,null,null);
    while(cursor.moveToNext()){
    BlackBeanblackNumberInfo=newBlackBean();
    blackNumberInfo.setNumber(cursor.getString(0));
    blackNumberInfo.setMode(cursor.getString(1));
    blackBeans.add(blackNumberInfo);
    }
    cursor.close();
    returnblackBeans;
    }

❻ python連接MySQL資料庫問題 cursor( ) 、execute()和fetc

MySQLdb.connect是python 連接MySQL資料庫的方法,在Python中 import MySQLdb即可使用,至於connect中的參數很簡單:x0dx0ahost:MySQL伺服器名x0dx0auser:資料庫使用者x0dx0apassword:用戶登錄密碼x0dx0adb:操作的資料庫名x0dx0acharset:使用的字元集(一般是gb2312)x0dx0acursor = db.cursor() 其實就是用來獲得python執行Mysql命令的方法,也就是x0dx0a我們所說的操作游標x0dx0a下面cursor.execute則是真正執行MySQL語句,即查詢TABLE_PARAMS表的數據。x0dx0a至於fetchall()則是接收全部的返回結果行 row就是在python中定義的一個變數,用來接收返回結果行的每行數據。同樣後面的r也是一個變數,用來接收row中的每個字元,如果寫成C的形式就更好理解了x0dx0afor(string row = '' row<= cursor.fetchall(): row++)x0dx0a for(char r = '' r<= row; r++)x0dx0aprintf("%c", r);x0dx0a大致就是這么個意思!

❼ Sql中的游標是幹嘛的

游標(cursor)是結果集的邏輯擴展,可以看做指向結果集的一個指針,通過使用游標,應用程序可以逐行訪問並處理結果集。

ResultSet對象用於接收查詢結果,next()方法用於判斷結果集是否為空,相當於指針,指向結果集下一個數據。

(7)資料庫cursor擴展閱讀:

游標的生命周期包含有五個階段:聲明游標、打開游標、讀取游標數據、關閉游標、釋放游標。

1、聲明游標語法

DECLARE cursor_name CURSOR [ LOCAL | GLOBAL ]

[ FORWARD_ONLY | SCROLL ]
[ STATIC | KEYSET | DYNAMIC | FAST_FORWARD ]
[ READ_ONLY | SCROLL_LOCKS | OPTIMISTIC ]
[ TYPE_WARNING ]
FOR select_statement
[ FOR UPDATE [ OF column_name [ ,...n ] ] ]

2、打開游標語法

open [ Global ] cursor_name | cursor_variable_name

3、讀取游標數據語法

Fetch[ [Next|prior|Frist|Last|Absoute n|Relative n ]from ][Global] cursor_name[into @variable_name[,....]]

4、關閉游標語法

close [ Global ] cursor_name | cursor_variable_name

5、釋放游標語法

deallocate cursor_name

❽ Android資料庫Cursor的問題

如果cursor中只有一行記錄,那麼cursor.moveToNext()為true
如果是多行記錄,那麼while就一直循環下去。不會忽略第一條記錄的

❾ 資料庫裡面靜態游標包含哪兩種類型

游標是SQL的一個內存工作區,由系統或用戶以變數的形式定義。游標的作用就是用於臨時存儲從資料庫中提取的數據塊。Oracle資料庫的Cursor類型包含三種: 靜態游標:分為顯式(explicit)游標和隱式(implicit)游標;REF游標:是一種引用類型,類似於指針。下面我們一一介紹它們的使用。

1.隱式游標

1)Select …INTO…語句,DML語句,使用隱式Cursor。此外,還有一種使用FOR LOOP的Implicit Cursor用法。

2)可以通過隱式Cusor的屬性來了解操作的狀態和結果。Cursor的屬性包含:

SQL%ROWCOUNT 整型代表DML語句成功執行的數據行數。

SQL%FOUND 布爾型值為TRUE代表插入、刪除、更新或單行查詢操作成功。

SQL%NOTFOUND 布爾型與SQL%FOUND屬性返回值相反。

SQL%ISOPEN 布爾型DML執行過程中為真,結束後為假。

3) 隱式Cursor由系統自動打開和關閉.

例如:


  • setserveroutputon

  • declare

  • begin

  • updateemployeessetemployee_name='Mike'whereemployee_id=1001;

  • ifSQL%FOUNDthen

  • dbms_output.put_line('Nameisupdated');

  • else

  • dbms_output.put_line('Nameisnotupdated');

  • endif;

  • end;

  • /

  • setserveroutputon

  • declare

  • begin

  • fortableInfoin(select*fromuser_tables)loop

  • dbms_output.put_line(tableInfo.table_name);

  • endloop;

  • exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);

  • end;

  • /

  • 2.顯式游標

    1) 顯式Cursor的屬性包含:

    游標的屬性 返回值類型 意義

    %ROWCOUNT 整型 獲得FETCH語句返回的數據行數

    %FOUND 布爾型 最近的FETCH語句返回一行數據則為真,否則為假

    %NOTFOUND 布爾型 與%FOUND屬性返回值相反

    %ISOPEN 布爾型 游標已經打開時值為真,否則為假

    2) 對於顯式游標的運用分為四個步驟:

    a 定義游標---Cursor [Cursor Name] IS;

    b 打開游標---Open [Cursor Name];

    c 操作數據---Fetch [Cursor name]

    d 關閉游標---Close [Cursor Name]

    以下是幾種常見顯式Cursor用法。


  • <p>setserveroutputon

  • declare

  • cursorcurisselect*fromuser_tables;

  • tableInfouser_tables%rowtype;

  • begin

  • opencur;

  • loop

  • fetchcurintotableInfo;

  • exitwhencur%notfound;

  • dbms_output.put_line(tableInfo.table_name);

  • endloop;</p><p>exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);</p><p>closecur;

  • end;

  • /</p>

  • setserveroutputon

  • declare

  • cursorcurisselect*fromuser_tables;

  • begin

  • fortableInfoincurloop

  • dbms_output.put_line(tableInfo.table_name);

  • endloop;

  • exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);

  • end;

  • /

  • 還可以使用帶參數open的cursor。


  • <p>setserveroutputon

  • declare

  • cursorcur(tblNamevarchar2)isselect*fromuser_constraintswheretable_name=tblName;

  • tableInfouser_constraints%rowtype;

  • begin

  • opencur('EMPLOYEES');

  • loop

  • fetchcurintotableInfo;

  • exitwhencur%notfound;

  • dbms_output.put_line(tableInfo.constraint_name);

  • endloop;</p><p>exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);</p><p>closecur;

  • end;

  • /</p><p></p>

  • setserveroutputon

  • declare

  • cursorcur(tblNamevarchar2)isselect*fromuser_constraintswheretable_name=tblName;

  • begin

  • fortableInfoincur('EMPLOYEES')loop

  • dbms_output.put_line(tableInfo.constraint_name);

  • endloop;

  • exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);

  • end

  • /

  • 可以使用WHERE CURRENT OF子句執行UPDATE或DELETE操作。


  • setserveroutputon

  • declare

  • cursorcurisselect*fromemployeesforupdate;

  • begin

  • fortableInfoincurloop

  • =salary*1.1wherecurrentofcur;

  • endloop;

  • commit;

  • exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);

  • end;

  • /

  • 3.REF CURSOR(Cursor Variables)

    REF Cursor在運行的時候才能確定游標使用的查詢。利用REF CURSOR,可以在程序間傳遞結果集(一個程序里打開游標變數,在另外的程序里處理數據)。

    也可以利用REF CURSOR實現BULK SQL,提高SQL性能。

    REF CURSOR分兩種,Strong REF CURSOR 和 Weak REF CURSOR。

    Strong REF CURSOR:指定retrun type,CURSOR變數的類型必須和return type一致。

    Weak REF CURSOR:不指定return type,能和任何類型的CURSOR變數匹配。

    Ref cursor的使用:

    1) Type [Cursor type name] is ref cursor

    2) Open cursor for...

    3) Fetch [Cursor name]

    4) Close Cursor

    例如:

    Step1:


  • createorreplacepackageTESTas

  • typeemployees_refcursor_%rowtype;

  • procereemployees_loop(employees_curINemployees_refcursor_type);

  • endTEST;

  • /

  • Step2:


  • procereemployees_loop(employees_curINemployees_refcursor_type)is

  • empemployees%rowtype;

  • begin

  • loop

  • fetchemployees_curintoemp;

  • exitwhenemployees_cur%NOTFOUND;

  • dbms_output.put_line(emp.employee_id);

  • endloop;

  • endemployees_loop;

  • endTEST;

  • /

  • Step3:


  • setserveroutputon

  • declare

  • empRefCurTEST.employees_refcursor_type;

  • begin

  • foriin10..20loop

  • dbms_output.put_line('DepartmentID='||i);

  • openempRefCurforselect*fromemployeeswheredepartment_id=i;

  • TEST.employees_loop(empRefCur);

  • endloop;

  • exception

  • whenothersthen

  • dbms_output.put_line(sqlerrm);

  • closeempRefCur;

  • end;

  • /

  • 4.BULK SQL

    使用FORALL和BULK COLLECT子句。利用BULK SQL可以減少PLSQL Engine和SQL Engine之間的通信開銷,提高性能。

    1. To speed up INSERT, UPDATE, and DELETE statements, enclose the SQL statement within a PL/SQL FORALL statement instead of a loop construct. 加速INSERT, UPDATE, DELETE語句的執行,也就是用FORALL語句來替代循環語句。

    2. To speed up SELECT statements, include the BULK COLLECT INTO clause in the SELECT statement instead of using INTO. 加速SELECT,用BULK COLLECT INTO 來替代INTO。


  • SQL>createtableemployees_tmpasselectfirst_name,last_name,salaryfromemployeeswhere0=1;

  • setserveroutputon

  • declare

  • cursoremployees_cur(depIdemployees.department_id%type)isselectfirst_name,last_name,_id=depId;

  • typeemployee_table_typeistableofemployees_cur%rowtypeindexbypls_integer;

  • employee_tableemployee_table_type;

  • begin

  • openemployees_cur(100);

  • fetchemployees_curbulkcollectintoemployee_table;

  • closeemployees_cur;

  • foriin1..employee_table.countloop

  • dbms_output.put_line(employee_table(i).first_name||''||employee_table(i).last_name||','||employee_table(i).salary);

  • endloop;

  • foralliinemployee_table.first..employee_table.last

  • insertintoemployees_tmpvalues(employee_table(i).first_name,employee_table(i).last_name,employee_table(i).salary);

  • commit;

  • end;

  • /