データ型 MEDIOMTEXT のフィールドを含むテーブルに画像を挿入したいと考えています。mediumtext データを挿入する方法を教えてください。
psmt=con.prepareStatement("INSERT INTO ofvcard (username,vcard) " + "VALUES (?,?)");
psmt.setString(1,"admin");
fis=new FileInputStream(image);
psmt.setBinaryStream(2, (InputStream)fis, (int)(image.length()));
int s = psmt.executeUpdate();