Recent content by Nataly

  1. N

    problem with pass array from Delphi to function

    Thank you! But I have a new problem I use TOracleQuery in thise case, I have type CREATE TYPE TTEST AS VARRAY (10) OF VARCHAR(100); in PL/SQL block and create array in Delphi a:=VarArrayCreate([0,9], varVariant); When I do Query.Execute; the next error occures "All arrays must be of equal...
  2. N

    problem with pass array from Delphi to function

    I need to pass array to procedure example CREATE TYPE TTEST AS VARRAY (100) OF VARCHAR(100); FUNCTION TEST (V TTEST) RETURN STRING IS BEGIN ... END; How I possible to call that procedure from my Delphi programm? I tryed {Delphi code} var tmpAr: variant; tmpstr : string; begin...
Back
Top