0

我的表::

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;

如何在此表中应用Base 64编码

我想将二进制图像数据转换为文本结果

有任何想法吗

4

0 回答 0