Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Error message

 [1/4] from: g:santilli:tiscalinet:it at: 31-Dec-2000 14:28


Hello Andrew! On 30-Dic-00, you wrote: AM> Your script might have an un-named object, a 'use block AM> inside a object that hides some words, or you might be [...] That bug should have been fixed... Regards, Gabriele. -- Gabriele Santilli <[giesse--writeme--com]> - Amigan - REBOL programmer Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/

 [2/4] from: gchiu:compkarori at: 31-Dec-2000 8:39


I occasionally see this error message: Invalid data type during recycle and I have to quit Rebol. Anyone know what I might be doing to get this? How to avoid? -- Graham Chiu

 [3/4] from: al:bri:xtra at: 31-Dec-2000 9:17


Graham wrote:
> I occasionally see this error message: > > "Invalid data type during recycle" > > and I have to quit Rebol. Anyone know what I might be doing to get this?
How to avoid? Your script might have an un-named object, a 'use block inside a object that hides some words, or you might be returning a a un-'reduced block from inside a function containing local words? Please send your code in so we can see. Andrew Martin ICQ: 26227169 http://members.nbci.com/AndrewMartin/

 [4/4] from: gchiu::compkarori::co::nz at: 31-Dec-2000 12:24


On Sun, 31 Dec 2000 09:17:35 +1300 "Andrew Martin" <[Al--Bri--xtra--co--nz]> wrote:
> Please send > your code in so we can > see.
I've found the problem - it's a bug with Rebol/command. I am updating a 26,000 record database. dbase: open odbc://userid:[password--myinterbasetable] db-port: first dbase After 100 records, and sometimes more, I get the error here after a select: db-recs: pick db-port 1 but if I replace the pick with a copy/part db-recs: copy/part db-port 1 then the update completes. It may just be part of the problems that R/c has with Interbase. -- Graham Chiu