我们如何使用JAVADATABASECONNECTIVITY连接将音频文件插入到MYSQL数据库插入图片我们使用psmnt=conn.prepareStatement("INSERTINTOupload_data(user_id,photo)"+"values(?,?)");psmnt.setLong(1,userId);fis=newFileInputStream(photoFile);psmnt.setBinaryStream(2,(InputStream)fis,(int)(photoFile.length()));/**executeUpdate()methodexecutes
我正在使用JSF2.0创建Web应用程序,在mysql中,我使用MEDIUMBLOB数据类型存储图像。为了插入值,我正在使用PreparedStatement,如下所示。PreparedStatementpsmnt=con.prepareStatement("INSERTINTOsketchesSG002003(userid,imageTitle,imageData,drawingComments)VALUES(?,?,?,?)");psmnt.setLong(1,personalInfoId);psmnt.setString(2,sketchesSG002003Title);try{