Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1.  
  2.  
  3. DECLARE
  4. tabela VARCHAR(255);
  5. atributos pratica9_e2.ATTR_ARRAY;
  6. valores pratica9_e2.VALUE_ARRAY;
  7. whereattrs pratica9_e2.ATTR_ARRAY;
  8. wherevals pratica9_e2.VALUE_ARRAY;
  9. BEGIN
  10.  
  11.  
  12.  
  13. tabela := 'TROFEU';
  14. atributos := pratica9_e2.ATTR_ARRAY('OBJETIVO');
  15. valores := pratica9_e2.VALUE_ARRAY('''TEST1''');
  16. whereattrs := pratica9_e2.ATTR_ARRAY('NOMEJOGO', 'IDTROFEU');
  17. wherevals := pratica9_e2.VALUE_ARRAY('''FIFA 14''', '''1''');
  18.  
  19. pratica9_e2.atualiza(tabela, atributos, valores, whereattrs, wherevals);
  20.  
  21. dbms_output.put_line('Aluno removido!');
  22.  
  23. END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement