gpt4 book ai didi

sql - PL/SQL 中对象类型的 typeof 等价物

转载 作者:行者123 更新时间:2023-12-05 01:37:50 25 4
gpt4 key购买 nike

我正在尝试在 Oracle 中使用 OOP 和 TDD。是的,我知道这听起来很疯狂。而且,我需要一些建议。

我正在为以下构造函数方法编写测试(针对此问题进行了简化):

CONSTRUCTOR FUNCTION PERSON(p_pidm NUMBER, p_throw_exception NUMBER DEFAULT 0, p_program_id NUMBER DEFAULT 0)
RETURN SELF AS RESULT IS

BEGIN

-- Attach constructor parameters to internal attributes
self.throw_exception := p_throw_exception;
self.program_id := p_program_id;

-- TESTING STUDENT INSTANTIATION
self.student := NEW STUDENT(self.a_pidm);

RETURN;
END;

在相应的测试中,我需要验证 self.student 是否设置为 STUDENT 的有效实例。在其他语言中,我使用 typeof 方法执行此操作,但我不知道 PL/SQL 中有这种方法。

所以,问题是,有谁知道我可以将用户定义的类型传入并取回其类/类型名称的函数/过程吗?

谢谢。

最佳答案

您可能想使用 IS OF <<type>> syntax .

有点像

IF l_variable IS OF( student )
THEN
<<do something>>
END IF;

关于sql - PL/SQL 中对象类型的 typeof 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14467034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com