sql >> データベース >  >> RDS >> Mysql

MySQLに画像を保存するにはどうすればよいですか?

    次の例を確認してください。

    java2s.comから:画像をMySQLに挿入

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    
    public class InsertPictureToMySql {
      public static void main(String[] args) throws Exception, IOException, SQLException {
        Class.forName("org.gjt.mm.mysql.Driver");
        Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/databaseName", "root", "root");
        String INSERT_PICTURE = "INSERT INTO MyPictures (photo) VALUES (?)";
    
        FileInputStream fis = null;
        PreparedStatement ps = null;
        try {
          conn.setAutoCommit(false);
          File file = new File("/tmp/photo.png");
          fis = new FileInputStream(file);
          ps = conn.prepareStatement(INSERT_PICTURE);
          ps.setBinaryStream(1, fis, (int) file.length());
          ps.executeUpdate();
          conn.commit();
        } finally {
          ps.close();
          fis.close();
        }
      }
    }
    

    MySQLテーブル:

    CREATE TABLE MyPictures (
       photo  BLOB
    );
    

    イメージがMySQLサーバーホストにある場合は、 LOAD_FILE() MySQLクライアントからのコマンド:

    INSERT INTO MyPictures (photo) VALUES(LOAD_FILE('/tmp/photo.png'));
    


    1. オペランドには1列が含まれている必要があります

    2. PostgreSQL Upsertは、システム列XMIN、XMAXなどを使用して、挿入された行と更新された行を区別します

    3. AmazonAWSでのMySQLまたはMariaDBデータベースのコールドスタンバイの構築

    4. Docker Compose mysql import .sql