Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

assigning char to BLOB-field (memo)

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
update person
set expirience = cv
where id=1

Field experience = BLOB (memo)
Field cv = CHAR(255)

This doesn't work, unfortunately.

update person
set experience = "bla bla bla"
where id=1

This does work, but I can't asign (first SQL)
a CHAR field to the BLOB field (experience).
 
Can your BLOB datatype be a CLOB datatype?

I have not tried this but I believe you can implicitly
convert CHAR to CLOB for your purposes.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top