Board index » delphi » Array fields with Interbase and TFibQuery
2102b...@katamail.com (Guido Pietrella)
![]() Delphi Developer |
Sat, 29 May 2004 16:53:52 GMT
Array fields with Interbase and TFibQuery
Hi everybody,
I know that FIBPlus supports array fields, although I tried many I am trying to set the value of an array field of integers whose This is the medatdata for the table: CREATE TABLE "ART" ( What's wrong with this code?? ArtQry.SQL.Text := 'UPDATE ART SET IDCATEG=:IDCATEG, CODICE=:CODICE, ArtQry.ParamByName('nCurArt').AsInteger := nCurArt; aComp := VarArrayCreate([1, N_MAX_COMPOSIZIONE], varInteger); ArtQry.ParamByName('COMPOSIZIONE').SetArrayValue(aComp); ArtQry.Prepare; Thanks everybody in advance for the help... Guido. |