Subject | RE: [IBO] BLOB Copy |
---|---|
Author | Alan McDonald |
Post date | 2007-06-25T21:57:52Z |
> --- In IBObjects@yahoogroups.com, "Alan McDonald" <alan@...> wrote:sure - check the help on teh ASSIGN method
> >
> > > How do I copy the contents of a BLOB field in one table to a BLOB
> > > field in another table?
> > >
> >
> > simple
> > UPDATE TABLE2 SET BLOB1=(SELECT BLOB1 FROM TABLE1 WHERE TABLE1.ID=N)
> > WHERE TABLE2.ID=Y;
> >
> > Alan
> >
>
> Is there also a way to do this using IB Objects and field references
> in code?
Alan