Source Code : Demo PreparedStatement Set Bytes

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Demo PreparedStatement Set Bytes

 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;

public class DemoPreparedStatementSetBytes {
  public static Connection getConnection() throws Exception {
    String driver = "org.gjt.mm.mysql.Driver";
    String url = "jdbc:mysql://localhost/databaseName";
    String username = "root";
    String password = "root";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static void main(String[] args) throws Exception {
    byte[] shortData = "www.java2s.com".getBytes();
    byte[] longData = "www.java2s.com".getBytes();

    Connection conn = null;
    PreparedStatement pstmt = null;
    try {
      conn = getConnection();
      String query = "insert into bytes_table (id, short_data, long_data) values(?, ?, ?)";

      pstmt = conn.prepareStatement(query);
      pstmt.setString(1, "0001");
      pstmt.setBytes(2, shortData);
      pstmt.setBytes(3, longData);

      int rowCount = pstmt.executeUpdate();
      System.out.println("rowCount=" + rowCount);
    } finally {
      pstmt.close();
      conn.close();
    }
  }
}
           
         
  

Thank with us