私のテーブル::
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エンコーディングを適用する方法はこちら
バイナリ画像データをテキスト結果に変換したい
何か案は
私のテーブル::
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エンコーディングを適用する方法はこちら
バイナリ画像データをテキスト結果に変換したい
何か案は