Guest User

Untitled

a guest
Oct 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. set serveroutput on;
  2. declare
  3. -- Запись
  4. type t_recx is record (
  5. a varchar2(10) not null := '',
  6. b integer
  7. );
  8. -- Таблица записей
  9. type t_tbl_recx is table of t_recx index by binary_integer;
  10. -- Переменная
  11. v_recx t_tbl_recx;
  12. begin
  13. -- Присваиваем значение полю записи
  14. v_recx(1).a := 'BBB'; -- На этой строке ошибка, хотя тип объявлен как varchar2
  15. dbms_output.put_line(v_recx(1).a);
  16. end;
  17.  
  18. a varchar2(10) not null := '',
  19.  
  20. v_recx(1).a := 'BBB';
Add Comment
Please, Sign In to add comment