Bonsoir ,

J'ai une petite question !!

j'ai un record déclaré

TYPE v_interface IS RECORD

(
client_code shadow_account.client_code%type,
contract_number shadow_account.contract_number%type,
branch_name branch.branch_name%type,
account_type shadow_account.account_type%type,
transaction_code cr_settlement_transaction.transaction_code%type
);

existe-t-il une possibilité par un curseur d' inserer des donnees dans mon record

comme ceci

LOOP

FETCH c1 INTO v_interface;


EXIT WHEN c1%NOTFOUND;
END LOOP;

COMMIT;


merci d'avance