Subject | Update Blob field |
---|---|
Author | grndeveloper |
Post date | 2006-03-24T17:26:01Z |
Hi,
I have a big problem with an update that involves a blob field.
I'm doing something like this:
update myTable
set
myBlobField = (select myBlobField
from myTable
where
myPrimaryKeyField = 1)
where
myPrimaryKeyField != 1;
and after commit it the field myBlobField isn't the same for all the
records of myTable !.
Do you know what's going on ???
Thank you for your time,
Jordi
I have a big problem with an update that involves a blob field.
I'm doing something like this:
update myTable
set
myBlobField = (select myBlobField
from myTable
where
myPrimaryKeyField = 1)
where
myPrimaryKeyField != 1;
and after commit it the field myBlobField isn't the same for all the
records of myTable !.
Do you know what's going on ???
Thank you for your time,
Jordi