Insert text file into MySQL : MySQL « Database SQL JDBC « Java






Insert text file into MySQL

  
import java.io.File;
import java.io.FileInputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;

public class InsertTextFileToMySQL {

  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 {
    String id = "001";
    String fileName = "fileName.txt";
    
    FileInputStream fis = null;
    PreparedStatement pstmt = null;
    Connection conn = null;
    try {
      conn = getConnection();
      conn.setAutoCommit(false);
      File file = new File(fileName);
      fis = new FileInputStream(file);
      pstmt = conn.prepareStatement("insert into DataFiles(id, fileName, fileBody) values (?, ?, ?)");
      pstmt.setString(1, id);
      pstmt.setString(2, fileName);
      pstmt.setAsciiStream(3, fis, (int) file.length());
      pstmt.executeUpdate();
      conn.commit();
    } catch (Exception e) {
      System.err.println("Error: " + e.getMessage());
      e.printStackTrace();
    } finally {
      pstmt.close();
      fis.close();
      conn.close();
    }
  }
}

           
         
    
  








Related examples in the same category

1.Creating connection to the MySQL database
2.Creating a Database in MySQL
3.Creating a MySQL Database Table to store Java Types
4.JDBC Mysql Connection String
5.Inserting values in MySQL database table
6.Use Oracle DataSource To Store MySql Connection
7.Create Database for MySQL
8.Test MySQL JDBC Driver Installation
9.Create table for mysql database
10.Setup mysql datasource
11.Access MySQL Database: open connection, create table, insert and retrieve
12.Count rows in MySQL
13.Demo ResultSet for MySQL
14.Create Table With All Data Types In MySQL
15.Read a Clob object from MySQL
16.How to serialize/de-serialize a Java object to the MySQL database.
17.Check JDBC Installation for MySQL
18.Demo MySql Transaction
19.Retrieve auto-generated keys
20.Move to absolute or relative row
21.Commit or rollback transaction in JDBC
22.Issue 'create database' command ny using Statement
23.Loading a Flat File to a MySQL Table, file is comma-separated
24.Loading a Flat File to a MySQL Table, file is terminated by \r\n, use this statement
25.Copy data from one table to another in a database
26.Exporting a MySQL Table to a Flat File
27.MySQL Error code and message