Guest User

Untitled

a guest
Jul 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. CREATE OR REPLACE FUNCTION myfunc (_arg1 text, _arg2 text[])
  2. ...
  3.  
  4. SELECT myfunc('testA', ARRAY[])
  5.  
  6. SELECT myfunc('testA', ARRAY['Entry1'])
  7. SELECT myfunc('testA', ARRAY['Entry1','Entry2', 'Entry3'])
  8.  
  9. ERREUR: tableau litéral mal formé : « 1 »
  10. DETAIL: La valeur du tableau doit commencer avec « { » ou avec l'information de la dimension.
  11. CONTEXT: fonction PL/pgsql processpage(text,text[]), ligne 15 à instruction SQL
Add Comment
Please, Sign In to add comment