Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のDBにはクラスがあります。たとえば、「人間」は「名前」と「年齢」フィールドで構成されています。また、次のコードを使用したトリガーもあります。
myObj := new human(); myObj.name := :new.name; myObj.age := :new.age;
myObj := new human();
myObj.name := :new.name;
myObj.age := :new.age;
SomeProc(myObj);
次のような書き方はありますか?
SomeProc((human):new)?
SomeProc((human):new)
さらに参照するためにオブジェクト インスタンスの変数をトリガー本体に保持する必要がない場合は、次の方法で既定のコンストラクターを暗黙的に呼び出すことができます。
SomeProc(MyObj(:new.name, :new.age));