My Table::
create table test_image (
id int(10) not null AUTO_INCREMENT PRIMARY KEY,
name varchar(25) not null default '',
image blob not null
);
SELECT * from test_image;
How to apply Base 64 encoding in this table here
i want to convert binary image data to textual result
Any Ideas