Insert picture to MySQL : Blob Binary Data JDBC : Database SQL JDBC : Java examples (example source code) Organized by topic

Java
C++
PHP
Java Home »  Database SQL JDBC   » [  Blob Binary Data JDBC  ]  Screenshots 
 



Insert picture to MySQL

/*

Defining the Table: Oracle and MySql

create table MyPictures (
   id INT PRIMARY KEY,
   name VARCHAR(0),
   photo BLOB
);
*/
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[] argsthrows 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(id, name, photo) values (?, ?, ?)";

    FileInputStream fis = null;
    PreparedStatement ps = null;
    try {
      conn.setAutoCommit(false);
      File file = new File("myPhoto.png");
      fis = new FileInputStream(file);
      ps = conn.prepareStatement(INSERT_PICTURE);
      ps.setString(1"001");
      ps.setString(2"name");
      ps.setBinaryStream(3, fis, (intfile.length());
      ps.executeUpdate();
      conn.commit();
    finally {
      ps.close();
      fis.close();
    }
  }
}

           
       
Related examples in the same category
1.  Demo Display Binary Data From Database
2.  Materialize binary data onto client
3.  Blob: JDBC deals with Binary Data
4.  Blob and JDBC: Image
5.  Blob: Image 2
6.  Blob: image 3
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.