sql >> Database teknologi >  >> RDS >> Mysql

Hvordan gemmer jeg et billede i MySQL?

Du ønsker måske at tjekke følgende eksempel:

Fra java2s.com:Indsæt billede til 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-tabel:

CREATE TABLE MyPictures (
   photo  BLOB
);

Hvis billedet er placeret på din MySQL-serverhost, kan du bruge LOAD_FILE() kommando fra en MySQL-klient:

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


  1. Hvordan kan jeg oprette forbindelse til MySQL i Python 3 på Windows?

  2. Sådan fungerer WEEKOFYEAR() i MariaDB

  3. Kunne ikke åbne mysql.plugin-tabellen. Nogle plugins er muligvis ikke indlæst

  4. Sådan har du dynamisk SQL i MySQL Stored Procedure