国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|數據庫技術|

服務器之家 - 數據庫 - Oracle - Oracle定義聯合數組及使用技巧

Oracle定義聯合數組及使用技巧

2019-11-13 16:05Oracle教程網 Oracle

聯合數組以前被稱為PL/SQL表。在表中不能使用聯合數組,只能將它們用作程序設計的結構體。只能在PL/SQL中訪問聯合數組

聯合數組以前被稱為PL/SQL表。在表中不能使用聯合數組,只能將它們用作程序設計的結構體。只能在PL/SQL中訪問聯合數組。 

注意到聯合數組帶來的一些關鍵問題是非常重要的。這些問題使我們介紹它們的用法時,需要采取一些特別的方法。這些問題包括: 

聯合數組不需要初始化,也沒有構造函數語法。在對它們進行賦值以前,也不需要專門為其分配存儲空間,也就不需要使用集合API的EXTEND方法。 

在ORACLE 10G中,以及在ORACLE 10G以前的版本中,都可以使用數字索引聯合數組。另外,在ORACLE 10G中,還可以使用具有唯一性的變長字符串作為聯合數組的索引。 

可以使用任意的整數作為聯合數組的索引,這就說明聯合數組的索引可以是任意正數、負數或0。 
可以顯式地將等價的%ROWTYPE、記錄類型和對象類型的返回值,轉換成聯合數組的結構體。 

聯合數組是使用FORALL語句或BULK COLLECT子句的關鍵,而后者則允許數據庫到程序設計單元的批轉換。 
在使用了全球化設置,例如NLS_COMP或NLS_SORT初始化參數的數據庫中,將字符串用作聯合數組索引的時候,需要我們進行特殊的處理。 

1、定義聯合數組和用作PL/SQL的程序結構體 
在PL/SQL語言中定義聯合數組的語法有兩種,一種是: 
CREATE OR REPLACE TYPE type_name 
AS TABLE OF element_type [NOT NULL] 
INDEX BY [PLS_INTEGER | BINARY_INTEGER | VARCHAR2(size) ]; 
可以將正數、負數或者0值用作聯合數組的索引。ORACLE 10G中的PLS_INTEGER何BINARY_INTEGER類型都是不受限制的數據類型,這兩個數據類型都映射到C/C++、C#和JAVA的調用規范中。 
變長字符串的最大長度為4000個字符。 
另一種定義聯合數組的語法是: 
CREATE OR REPLACE TYPE type_name 
AS TABLE OF element_type [NOT NULL] 
INDEX BY key_type; 
其中的key_type允許我們使用VARCHAR2、STRING或LONG類型。使用VARCHAR2和STRING時,都需要定義大小。使用LONG類型時,則不需要定義大小,因為它是通過定義VARCHAR(32760)進行定義的。 
聯合數組不需要進行初始化,也沒有構造函數語法。這是與其他兩種集合類型(VARRAYS和嵌套表)有著本質區別的地方。 
如果你像下面這樣構造一個聯合數組,那么會引發PLS-00222異常。 

復制代碼代碼如下:


-- Define an associative array of strings. 
TYPE card_table IS TABLE OF VARCHAR2(5 CHAR) 
INDEX BY BINARY_INTEGER; 
-- and attempt to construct an associative array. 
cards CARD_TABLE := card_table('A','B','C'); 
BEGIN 
NULL; 
END; 


在前面的介紹中,我們知道對象的構造函數是完全可以作為一個函數使用的。其他集合類型,例如VARRAYS和嵌套表,都是顯式定義構造函數的對象類型。而聯合數組只是一個結構體,不是一個對象類型。因此,它不能顯式地創建構造函數,也無法調用構造函數。 
2、聯合數組的初始化 
前面已經說過,我們可以將數字或者具有唯一性的變長字符串作為索引,構造聯合數組。數字索引比如為整數,可以為正整數、負整數和0值。唯一性的變長字符串可以是VARCHAR2、STRING或LONG數據類型。 
1)以數字作為聯合數組索引 
下面的例子給出了一個向以數字為索引的聯合數組中的元素賦值的過程,該示例示范了將VARRAY的內容轉移到聯合數組的過程。 

復制代碼代碼如下:


-- Define a varray of twelve strings. 
TYPE months_varray IS VARRAY(12) OF STRING(9 CHAR); 
-- Define an associative array of strings. 
TYPE calendar_table IS TABLE OF VARCHAR2(9 CHAR) 
INDEX BY BINARY_INTEGER; 
-- and construct a varray. 
month MONTHS_VARRAY := 
months_varray('January','February','March' 
,'April','May','June' 
,'July','August','September' 
,'October','November','December'); 
-- an associative array variable. 
calendar CALENDAR_TABLE; 
BEGIN 
-- Check if calendar has no elements. 
IF calendar.COUNT = 0 THEN 
-- Print a title 
DBMS_OUTPUT.PUT_LINE('Assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('----------------'); 
-- Loop through all the varray elements. 
FOR i IN month.FIRST..month.LAST LOOP 
-- Initialize a null associative array element. 
calendar(i) := ''; 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||i||'] is ['||calendar(i)||']'); 
-- Assign the numeric index valued varray element 
-- to an equal index valued associative array element. 
calendar(i) := month(i); 
END LOOP; 
-- Print a title 
DBMS_OUTPUT.PUT(CHR(10)); 
DBMS_OUTPUT.PUT_LINE('Post-assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('---------------------'); 
-- Loop through all the associative array elements. 
FOR i IN calendar.FIRST..calendar.LAST LOOP 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||i||'] is ['||calendar(i)||']'); 
END LOOP; 
END IF; 
END; 


在第一個FOR-LOOP循環中,用等于VARRAY類型的month索引的一個索引值,為聯合數組類型的calendar變量賦上一個空值。這是為聯合數組分配空間的唯一方法。 
2)以唯一字符串作為聯合數組索引 
如下例所示: 

復制代碼代碼如下:


-- Define a varray of twelve variable length strings. 
TYPE months_varray IS VARRAY(12) OF STRING(9 CHAR); 
-- Define an associative array of variable length strings. 
TYPE calendar_table IS TABLE OF VARCHAR2(9 CHAR) 
INDEX BY VARCHAR2(9 CHAR); 
-- and construct a varray. 
month MONTHS_VARRAY := 
months_varray('January','February','March' 
,'April','May','June' 
,'July','August','September' 
,'October','November','December'); 
-- an associative array variable. 
calendar CALENDAR_TABLE; 
BEGIN 
-- Check if calendar has no elements. 
IF calendar.COUNT = 0 THEN 
-- Print a title 
DBMS_OUTPUT.PUT_LINE('Assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('----------------'); 
-- Loop through all the varray elements. 
FOR i IN month.FIRST..month.LAST LOOP 
-- Assign the numeric index valued varray element 
-- to an equal index valued associative array element. 
calendar(month(i)) := ''; --i; 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||month(i)||'] is ['||i||']'); 
END LOOP; 
-- Print a title 
DBMS_OUTPUT.PUT(CHR(10)); 
DBMS_OUTPUT.PUT_LINE('Post-assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('---------------------'); 
-- Loop through all the associative array elements. 
FOR i IN calendar.FIRST..calendar.LAST LOOP 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||i||'] is ['||calendar(i)||']'); 
END LOOP; 
END IF; 
END; 


運行上面這段代碼會出現錯誤。ORA-06502:PL/SQL:numeric or value error:character to number convertion error。在第一個FOR-LOOP中的初始化是沒有任何問題的??墒窃诘诙€FOR-LOOP循環中,程序試圖向計數器變量傳遞一個非數字的值。在上面的程序中,這個計數器變量是i。計數器變量的數據類型被定義為PLS_INTEGER類型。所以,就不能將整個變長字符串的索引值賦給一個整型變量—因為變長字符串不是整數。這樣,自然就引發了類型轉換錯誤ORA-06502。該示例之所以會引發錯誤,是因為在初始化聯合數組成員的時候,其中的計數器變量被轉換為VARCHAR2類型,而在讀聯合數組的時候,又將該計數器類型轉為INTEGER類型。 
這其實給我們提出了一個新問題。非數字索引值需要我們明確的知道索引的開始值以及索引的遞增方法。集合API的FIRST何NEXT方法提供了這種工具。 
如下例所示: 

復制代碼代碼如下:


-- Define variables to traverse an associative array that 
-- uses variable length strings for index values. 
current VARCHAR2(9 CHAR); 
element INTEGER; 
-- Define a varray of twelve variable length strings. 
TYPE months_varray IS VARRAY(12) OF STRING(9 CHAR); 
-- Define an associative array of variable length strings. 
TYPE calendar_table IS TABLE OF VARCHAR2(9 CHAR) 
INDEX BY VARCHAR2(9 CHAR); 
-- and construct a varray. 
month MONTHS_VARRAY := 
months_varray('January','February','March' 
,'April','May','June' 
,'July','August','September' 
,'October','November','December'); 
-- an associative array variable. 
calendar CALENDAR_TABLE; 
BEGIN 
-- Check if calendar has no elements. 
IF calendar.COUNT = 0 THEN 
-- Print a title 
DBMS_OUTPUT.PUT_LINE('Assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('----------------'); 
-- Loop through all the varray elements. 
FOR i IN month.FIRST..month.LAST LOOP 
-- Assign the numeric index valued varray element 
-- to an equal index valued associative array element. 
calendar(month(i)) := TO_CHAR(i); 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||month(i)||'] is ['||i||']'); 
END LOOP; 
-- Print a title 
DBMS_OUTPUT.PUT(CHR(10)); 
DBMS_OUTPUT.PUT_LINE('Post-assignment loop:'); 
DBMS_OUTPUT.PUT_LINE('---------------------'); 
-- Loop through all the associative array elements. 
FOR i IN 1..calendar.COUNT LOOP 
-- Check if the first element in the loop. 
IF i = 1 THEN 
-- Assign the first character index to a variable. 
current := calendar.FIRST; 
-- Use the derived index to find the next index. 
element := calendar(current); 
ELSE 
-- Check if next index value exists. 
IF calendar.NEXT(current) IS NOT NULL THEN 
-- Assign the character index to a variable. 
current := calendar.NEXT(current); 
-- Use the derived index to find the next index. 
element := calendar(current); 
ELSE 
-- Exit loop since last index value is read. 
EXIT; 
END IF; 
END IF; 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE( 
'Index ['||current||'] is ['||element||']'); 
END LOOP; 
END IF; 
END; 


3、與BULK COLLECT和FORALL結合使用聯合數組 
使用BULK COLLECT和FORALL胃我們打開了消除行級處理之門。使用BULK COLLECT可以獲取存儲在聯合數組或嵌套表中的記錄集。使用FORALL可以成批的發送DML語句。FORALL可以插入、更新和刪除數據。這些方法減少了PL/SQL引擎和SQL引擎之間來回切換上下文環境的次數。如果沒有這些方法,就會有太多的解析或取值過程。 
你應該還記得行級處理實際上使用的是%ROWTYPE和%TYPE。前者可以直接映射到記錄類型上。BULK COLLECT可以將%ROWTYPE或%TYPE類型的值的一個集合作為聯合數組或嵌套表的一個集合進行賦值。FORALL提供了一種可以將聯合數組或嵌套表中的內容轉移到數據庫對象的方法。 
聯合數組和嵌套表集合類型可以與BULK COLLECT和FORALL結合使用。使用嵌套表時,需要將嵌套表構造為空元素的集合。BULK COLLECT會顯式地分配嵌套表的存儲空間。不需要對聯合數組進行構造,只要一個批賦值就可以了。同樣,聯合數組和嵌套表都可以作為SQL命令FORALL的源結構。 
如下示例所示: 

復制代碼代碼如下:


-- Create a table for the example. 
CREATE TABLE bulk_numbers 
(number_id NUMBER NOT NULL 
,CONSTRAINT number_id_pk PRIMARY KEY (number_id)); 
-- Define an associative array of integers. 
TYPE number_table IS TABLE OF bulk_numbers.number_id%TYPE 
INDEX BY BINARY_INTEGER; 
-- Define a variable of the associative array type. 
number_list NUMBER_TABLE; 
BEGIN 
-- Loop from 1 to a million and increment associative array. 
FOR i IN 1..10000 LOOP 
-- Assign number value. 
number_list(i) := i; 
END LOOP; 
-- Loop through all to do a bulk insert. 
FORALL i IN 1..number_list.COUNT 
INSERT 
INTO bulk_numbers 
VALUES (number_list(i)); 
-- Commit records. 
COMMIT; 
END; 
-- Use a BULK COLLECT to retrieve a table into an 
-- associative array. 
-- Define an associative array of integers. 
TYPE number_table IS TABLE OF bulk_numbers.number_id%TYPE 
INDEX BY BINARY_INTEGER; 
-- Define a variable of the associative array type. 
number_list NUMBER_TABLE; 
BEGIN 
-- Check if calendar has no elements. 
SELECT number_id 
BULK COLLECT 
INTO number_list 
from bulk_numbers; 
-- Print a title 
DBMS_OUTPUT.PUT_LINE('Bulk Collected:'); 
DBMS_OUTPUT.PUT_LINE('---------------'); 
-- Loop through to print elements. 
--只打印前兩條和最后兩條記錄 
FOR i IN number_list.FIRST..number_list.LAST LOOP 
-- Print only the first and last two. 
IF i <= 2 OR i >= 9999 THEN 
-- Print an indexed element from the associative array. 
DBMS_OUTPUT.PUT_LINE('Number ['||number_list(i)||']'); 
END IF; 
END LOOP; 
END; 


在BULK COLLECT子句中使用了ORDER BY,保證得出的結果是按照數字升序排列的。如果不對元素進行排序,就會發現它們是按照隨機的順序獲取的,而不是按它們的數字順序進行獲取的。

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产欧美日韩三级 | 九色在线 | 婷婷在线视频 | 欧美一区二区视频免费观看 | 国产综合亚洲精品一区二 | 成人午夜免费视频 | 国产精品一区不卡 | 久久精品在线视频 | 欧美性网 | 91精品国产综合久久福利软件 | 国产一区二区三区四区五区密私 | 亚洲视频一区在线 | 国产成人久久精品一区二区三区 | 午夜久久久 | 99久久婷婷国产精品综合 | 久久精品a一级国产免视看成人 | 黄色的视频免费看 | 最新国产一区 | 欧美日韩精品一区二区三区四区 | 国产成人精品一区二区 | 日本a视频 | 亚洲精品9999| 久久一级 | 欧美一区免费 | 免费精品 | 日韩和的一区二在线 | 国产精品美女www爽爽爽软件 | 九九色影院| 久草中文在线 | 狠狠操狠狠干 | 寡妇高潮免费视频一区二区三区 | 成人在线免费看视频 | 国产精品高清在线 | 亚洲国产精品久久人人爱 | 成人久久久久久久 | 日产精品一区二区三区在线观看 | 成人午夜视频在线 | 成人在线小视频 | 国产一区中文字幕 | 国产精品久久久久久久久免费桃花 | 日韩国产欧美 |