<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Decode360's Blog

    業精于勤而荒于嬉 QQ:150355677 MSN:decode360@hotmail.com

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 ::  :: 管理 ::
      397 隨筆 :: 33 文章 :: 29 評論 :: 0 Trackbacks
    關于DBMS_SQL的使用
    http://www.itpub.net/thread-9530-1-1.html

    ??? 在PL/SQL程序設計過程中,會遇到很多必須使用動態sql的地方,oracle系統所提供的DMBS_SQL包可以幫助你解決問題。
    ?
    ?
    (一)介紹

    ??? DBMS_SQL系統包提供了很多函數及過程,現在簡要闡述其中使用頻率較高的幾種:

    ??? function open_cursor:打開一個動態游標,并返回一個整型;

    ??? procedure close_cursor(c in out integer)
    :關閉一個動態游標,參數為open_cursor所打開的游標;

    ??? procedure parse(c in integer, statement in varchar2, language_flag in integer):對動態游標所提供的sql語句進行解析,參數C表示游標,statement為sql語句,language-flag為解析sql語句所用oracle版本,一般有V6,V7跟native(在不明白所連database版本時,使用native);

    ??? procedure define_column(c in integer, position in integer, column any datatype, [column_size in integer]):定義動態游標所能得到的對應值,其中c為動態游標,positon為對應動態sql中的位置(從1開始),column為該值所對應的變量,可以為任何類型,column_size只有在column為定義長度的類型中使用如VARCHAR2,CHAR等(該過程有很多種情況,此處只對一般使用到的類型進行表述);

    ??? function execute(c in integer):執行游標,并返回處理一個整型,代表處理結果(對insert,delete,update才有意義,而對select語句而言可以忽略);

    ??? function fetch_rows(c in integer):對游標進行循環取數據,并返回一個整數,為0時表示已經取到游標末端;

    ??? procedure column_value(c in integer, position in integer, value):將所取得的游標數據賦值到相應的變量,c為游標,position為位置,value則為對應的變量;

    ??? procedure bind_variable(c in integer, name in varchar2, value):定義動態sql語句(DML)中所對應字段的值,c為游標,name為字段名稱,value為字段的值;

    ??? 以上是在程序中經常使用到的幾個函數及過程,其他函數及過程請參照oracle所提供定義語句dbmssql.sql
    ?

    (二)一般過程

    ??? 對于一般的select操作,如果使用動態的sql語句則需要進行以下幾個步驟:
    ??? open cursor--->parse--->define column--->excute--->fetch rows--->close cursor;
    ??? 而對于dml操作(insert,update)則需要進行以下幾個步驟:
    ??? open cursor--->parse--->bind variable--->execute--->close cursor;
    ??? 對于delete操作只需要進行以下幾個步驟:
    ??? open cursor--->parse--->execute--->close cursor;
    ?

    (三)具體案例

    ??? 下面就本人所開發系統中某一程序做分析
    ??? 該過程為一股票技術曲線計算程序,將數據從即時數據表中取出,并按照計算曲線的公式,對這些數據進行計算,并將結果保存到技術曲線表中.
    ?
    --**********************************
    --procedure name:R_Ma_Main
    --入口參數:PID股票代碼,PEND時間,pinterval時間間隔,totab目標數據表
    --調用函數:R_GetSql1,R_GetSql2
    --功能:具體計算單支股票ma技術曲線
    --時間:2001-06-20
    --**********************************
    create or replace procedure R_Ma_Main
    ? (
    ?? pid varchar2,
    ?? pend varchar2,
    ?? pinterval varchar2,
    ?? totab varchar2
    ? ) is?????????????????????
    ?
    --定義數組
    type Date_type is table of varchar2(12) index by binary_integer;
    type Index_type is table of number index by binary_integer;

    TempDate Date_Type;--時間數組
    TempIndex Index_Type;--股票收盤價數組
    TempMa Index_Type;--ma技術曲線數據

    cursor1 integer;--游標
    cursor2 integer;--游標
    rows_processed integer;--執行游標返回

    TempInter integer;--參與計算數值個數
    TempVal integer;--計算時間類型
    TempSql varchar2(500);--動態sql語句
    MyTime varchar2(12);--時間
    MyIndex number;--數值
    MidIndex number;--中間變量
    i integer := 999;
    j integer;
    begin
    ? TempInter := to_number(substr(pinterval,1,4));
    ? TempVal := to_number(substr(pinterval,5,2));
    ? TempSql := R_GetSql1(pid, pend, TempVal);--得到選擇數據的sql語句

    ? --得到當天的即時數據,并依次保存到數組中
    ? cursor1 := dbms_sql.open_cursor;? --創建游標
    ? dbms_sql.parse(cursor1, TempSql, dbms_sql.native);? --解析動態sql語句,取兩個字段,時間及價格,其中時間以14位的varchar2表示
    ? dbms_sql.define_column(cursor1, 1, MyTime, 12);? --分別定義sql語句中各字段所對應變量
    ? dbms_sql.define_column(cursor1, 2, MyIndex);
    ? rows_processed := dbms_sql.execute(cursor1);
    ? loop
    ??? if dbms_sql.fetch_rows(cursor1) > 0 then
    ????? begin
    ??????? dbms_sql.column_value(cursor1, 1, MyTime);
    ??????? dbms_sql.column_value(cursor1, 2, MyIndex);
    ??????? TempDate(i) := MyTime;
    ??????? TempIndex(i) := MyIndex;
    ??????? i := i - 1;--按倒序的方法填入數組
    ????? end;
    ??? else
    ????? exit;
    ??? end if;
    ? end loop;
    ? dbms_sql.close_cursor(cursor1);
    ?
    ? --如果取得的數據量不夠計算個數,則跳出程序
    ? if i > 999-TempInter then
    ??? goto JumpLess;
    ? end if;
    ?
    ? --初始化中間變量
    ? MidIndex := 0;
    ? TempIndex(i) := 0;
    ? for j in i..i+TempInter-1 loop
    ??? MidIndex := MidIndex + TempIndex(j);
    ? end loop;

    ? --依次對當天數據計算ma值,并保存到ma數組中
    ? for j in i+TempInter..999 loop
    ??? MidIndex := MidIndex - TempIndex(j-TempInter) + TempIndex(j);
    ??? TempMa(j) := MidIndex/TempInter;
    ? end loop;??

    ? if TempVal < 6 then--如果計算的是分鐘跟天的ma技術曲線
    ??? begin
    ??? cursor2 := dbms_sql.open_cursor;
    ??? TempSql := 'insert into ' || totab || ' values(:r_no, :i_interval, :i_time, :i_index)';
    ??? dbms_sql.parse(cursor2, TempSql, dbms_sql.native);
    ??? for j in i+TempInter..999 loop
    ????? dbms_sql.bind_variable(cursor2, 'r_no', pid);
    ????? dbms_sql.bind_variable(cursor2, 'i_interval', pinterval);
    ????? dbms_sql.bind_variable(cursor2, 'i_time', TempDate(j));
    ????? dbms_sql.bind_variable(cursor2, 'i_index', TempMa(j));
    ????? rows_processed := dbms_sql.execute(cursor2);--插入數據
    ??? end loop;
    ??? end;
    ? end if;
    ? commit;
    ? dbms_sql.close_cursor(cursor2);
    ? --數據量不足跳出
    ? <<JumpLess>>
    ? null;
    ?
    ? --exception處理,無關本話題
    end;
    /
    ?

    (四)個人觀點

    ??? 在使用dbms_sql系統包的過程中,其方法簡單而又不失靈活,但還是需要注意一些問題:
    ?
    ??? 1、在整個程序的設計過程中,對游標的操作切不可有省略的部分,一旦省略其中某一步驟,則會程序編譯過程既告失敗,如在程序結尾處未對改游標進行關閉操作,則在再次調用過程時會出現錯誤.
    ??? 2、dbms_sql除了可以做一般的select,insert,update,delete等靜態的sql做能在過程中所做工作外,還能執行create等DDL操作,不過在執行該類操作時應首先顯式賦予執行用戶相應的系統權限,比如create table等.該類操作只需open cursor--->prase--->close cursor即能完成.

    ??? 以上為本人在工作中對dbms_sql的一點點看法,不到之處,請予指正.
    ??? 對于想更深了解dbms_sql的朋友,請閱讀dbmssql.sql文件.
    ?
    ?
    附個Oracle自帶的流程說明(強大啊):
    ?
    ? --? The flow of procedure calls will typically look like this:
    ? --
    ? --????????????????????? -----------
    ? --??????????????????? | open_cursor |
    ? --????????????????????? -----------
    ? --?????????????????????????? |
    ? --?????????????????????????? |
    ? --?????????????????????????? v
    ? --???????????????????????? -----
    ? --????????? ------------>| parse |
    ? --???????? |?????????????? -----
    ? --???????? |???????????????? |
    ? --???????? |???????????????? |---------
    ? --???????? |???????????????? v???????? |
    ? --???????? |?????????? --------------? |
    ? --???????? |-------->| bind_variable | |
    ? --???????? |???? ^???? -------------?? |
    ? --???????? |???? |?????????? |???????? |
    ? --???????? |????? -----------|???????? |
    ? --???????? |???????????????? |<--------
    ? --???????? |???????????????? v
    ? --???????? |?????????????? query?---------- yes ---------
    ? --???????? |???????????????? |?????????????????????????? |
    ? --???????? |??????????????? no?????????????????????????? |
    ? --???????? |???????????????? |?????????????????????????? |
    ? --???????? |???????????????? v?????????????????????????? v
    ? --???????? |????????????? -------????????????????? -------------
    ? --???????? |----------->| execute |??????????? ->| define_column |
    ? --???????? |????????????? -------???????????? |??? -------------
    ? --???????? |???????????????? |------------??? |????????? |
    ? --???????? |???????????????? |??????????? |??? ----------|
    ? --???????? |???????????????? v??????????? |????????????? v
    ? --???????? |?????????? --------------???? |?????????? -------
    ? --???????? |?????? ->| variable_value |?? |? ------>| execute |
    ? --???????? |????? |??? --------------???? | |???????? -------
    ? --???????? |????? |????????? |??????????? | |??????????? |
    ? --???????? |?????? ----------|??????????? | |??????????? |
    ? --???????? |???????????????? |??????????? | |??????????? v
    ? --???????? |???????????????? |??????????? | |??????? ----------
    ? --???????? |???????????????? |<-----------? |----->| fetch_rows |
    ? --???????? |???????????????? |????????????? |??????? ----------
    ? --???????? |???????????????? |????????????? |??????????? |
    ? --???????? |???????????????? |????????????? |??????????? v
    ? --???????? |???????????????? |????????????? |??? --------------------
    ? --???????? |???????????????? |????????????? |? | column_value???????? |
    ? --???????? |???????????????? |????????????? |? | variable_value?????? |
    ? --???????? |???????????????? |????????????? |??? ---------------------
    ? --???????? |???????????????? |????????????? |??????????? |
    ? --???????? |???????????????? |<--------------------------
    ? --???????? |???????????????? |
    ? --????????? -----------------|
    ? --?????????????????????????? |
    ? --?????????????????????????? v
    ? --????????????????????? ------------
    ? --??????????????????? | close_cursor |
    ? --????????????????????? ------------
    ? --
    ? ---------------
    ?
    ?
    posted on 2009-01-24 22:13 decode360 閱讀(146) 評論(0)  編輯  收藏 所屬分類: 06.PLSQL
    主站蜘蛛池模板: 亚洲av无码偷拍在线观看| 亚洲jjzzjjzz在线观看| fc2免费人成在线| 亚洲精品国精品久久99热| 色五月五月丁香亚洲综合网| 成年人视频在线观看免费| 免费成人午夜视频| 久久久亚洲精华液精华液精华液 | 久久精品国产亚洲av高清漫画| a毛片免费观看完整| 亚洲成A∨人片在线观看不卡| 嫩草在线视频www免费看| 亚洲电影国产一区| 亚洲色大成网站www久久九| 女性无套免费网站在线看| 蜜桃传媒一区二区亚洲AV | 国产在线观a免费观看| 亚洲精品无码午夜福利中文字幕| 国产成人免费AV在线播放| 亚洲天堂中文资源| 羞羞网站在线免费观看| 自拍偷自拍亚洲精品第1页| 久久精品一区二区免费看| 亚洲一级毛片在线播放| 国产男女猛烈无遮挡免费视频网站| 91嫩草私人成人亚洲影院| 中文字幕永久免费视频| 亚洲短视频男人的影院| 久久久www成人免费毛片| 羞羞的视频在线免费观看| 国产亚洲精品资源在线26u| 国产在线jyzzjyzz免费麻豆| 亚洲国产成人久久综合| 精品亚洲成α人无码成α在线观看 | 精品国产人成亚洲区| 2019中文字幕在线电影免费| 亚洲成a人片在线不卡一二三区| 伊人久久亚洲综合| 一二三四视频在线观看中文版免费| 国产v亚洲v天堂无码网站| 岛国av无码免费无禁网站|