是否可以在过程中将数组作为参数传递?
is it possible to pass arrays as parameters in procedures?
我试图在我的过程中将一个数组作为参数传递,但我不断收到命令未知错误
代码
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;
/
table
法语错误,意思是命令未知
请帮忙
你的语法错误出现在你的类型声明中,所以你的代码的其余部分并不是真正需要的。
TYPE pourcentage_remise IS TABLE OF NUMBER INDEX BY commandeproduit.ref_produit%type;
几个问题
- 如果您尝试在 SQL 中声明类型,则需要使用
CREATE TYPE
,因此您缺少 CREATE
。
- 如果您尝试在 SQL 中声明 table 类型,则不能使用关联数组。实际上,您需要一个嵌套的 table。
- 如果你试图声明一个 PL/SQL 类型,你的语句需要在 PL/SQL 块中。您可以声明一个包含关联数组类型的包。
如果要声明嵌套 table 类型 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;
如果您想使用嵌套 table 类型,这会改变您需要初始化关联数组的方式。它应该改变您引用该数组元素的方式,但我对您的代码感到困惑。您的过程似乎正在使用数字索引来访问关联数组的元素,如果关联数组使用字符串作为索引,这就没有意义。
我试图在我的过程中将一个数组作为参数传递,但我不断收到命令未知错误
代码
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;
/
table
法语错误,意思是命令未知
请帮忙
你的语法错误出现在你的类型声明中,所以你的代码的其余部分并不是真正需要的。
TYPE pourcentage_remise IS TABLE OF NUMBER INDEX BY commandeproduit.ref_produit%type;
几个问题
- 如果您尝试在 SQL 中声明类型,则需要使用
CREATE TYPE
,因此您缺少CREATE
。 - 如果您尝试在 SQL 中声明 table 类型,则不能使用关联数组。实际上,您需要一个嵌套的 table。
- 如果你试图声明一个 PL/SQL 类型,你的语句需要在 PL/SQL 块中。您可以声明一个包含关联数组类型的包。
如果要声明嵌套 table 类型 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;
如果您想使用嵌套 table 类型,这会改变您需要初始化关联数组的方式。它应该改变您引用该数组元素的方式,但我对您的代码感到困惑。您的过程似乎正在使用数字索引来访问关联数组的元素,如果关联数组使用字符串作为索引,这就没有意义。