是否可以在过程中将数组作为参数传递?

问题描述 投票:-1回答:1

我正在尝试将数组作为参数传递给我的过程,但我不断收到命令未知错误

code

    SET SERVEROUTPUT ON;

    TYPE pourcentage_remise IS TABLE OF NUMBER INDEX BY commandeproduit.ref_produit%type;

    CREATE OR REPLACE PROCEDURE remise_produit( pourcent IN pourcentage_remise,
                            ref_comm IN commande.ref_commande%type,
                            c_ht OUT commandeproduit.prix_ht%type,
                            c_ttc OUT commandeproduit.prix_ttc%type)
    IS
    CURSOR p_curs IS 
    SELECT ref_produit, prix_ttc, prix_ht  FROM commandeproduit WHERE concerne = ref_comm ;
    ref commandeproduit.ref_produit%type;
    ttc commandeproduit.prix_ttc%type;
    ht commandeproduit.prix_ht%type;

    BEGIN
        open p_curs;
            LOOP
                FETCH p_curs into ref, ttc, ht;
                EXIT WHEN p_curs%notfound;
                dbms_output.put_line(ref, ' ',ht, ' ', ttc);
                IF pourcent(ref) THEN
                    ttc := ttc - ttc * pourcent(ref);
                    ht := ht - ttc * pourcent(ref);
                    INSERT INTO commandeproduit(prix_ht, prix_ttc) VALUES(ht, ttc) WHERE concerne = ref_comm AND ref_produit = ref;
                END IF;
                dbms_output.put_line(ref, ' ',ht, ' ', ttc);
            END LOOP;
        close p_curs;
    END remise_produit;
    /

程序调用

DECLARE 
pourcentage pourcentage_remise;
reference commande.ref_commande%type :=1;
BEGIN
pourcentage('A01') :=0.15;
pourcentage('B15') :=0.2;
remise_produit(pourcentage, reference);
END;
/

表格

enter image description here

法语错误,表示命令未知

enter image description here

请帮助

oracle plsql procedure
1个回答
0
投票

您的语法错误在您的类型的声明上,因此实际上不需要其余的代码。

TYPE pourcentage_remise IS TABLE OF NUMBER INDEX BY commandeproduit.ref_produit%type;

几个问题

  • 如果尝试在SQL中声明类型,则需要使用CREATE TYPE,因此缺少CREATE
  • 如果尝试在SQL中声明表类型,则不能使用关联数组。实际上,您实际上希望使用嵌套表。
  • 如果尝试声明PL / SQL类型,则您的语句必须位于PL / SQL块中。您可以声明一个包含关联数组类型的包。

如果要在SQL中声明嵌套表类型,则>]

CREATE TYPE pourcentage_remise IS TABLE OF NUMBER;

如果要在PL / SQL包中声明一个关联数组

CREATE OR REPLACE PACKAGE my_collection_pkg
AS
  TYPE pourcentage_remise IS TABLE OF NUMBER INDEX BY commandeproduit.ref_produit%type;
END; 

如果要使用嵌套表类型,则将更改初始化关联数组的方式。它应该改变您引用该数组元素的方式,但是我对您的代码感到困惑。您的过程似乎正在使用数字索引来访问关联数组的元素,如果关联数组使用字符串作为索引,则这没有意义。

© www.soinside.com 2019 - 2024. All rights reserved.