Demo Prepared Statement Set Ascii Stream : Stream Data : Database SQL JDBC : Java examples (example source code) Organized by topic

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



Demo Prepared Statement Set Ascii Stream

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

public class DemoPreparedStatementSetAsciiStream {
  public static Connection getConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
    String username = "name";
    String password = "password";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static void main(String[] args) {
    Connection conn = null;
    PreparedStatement pstmt = null;
    String query = null;
    try {
      conn = getConnection();
      String fileName = "fileName.txt";
      File file = new File(fileName);
      int fileLength = (intfile.length();
      InputStream stream = (InputStreamnew FileInputStream(file);

      query = "insert into  LONG_VARCHAR_TABLE(id, stream) values(?, ?)";
      pstmt = conn.prepareStatement(query);
      pstmt.setString(1, fileName);
      pstmt.setAsciiStream(2, stream, fileLength);

      int rowCount = pstmt.executeUpdate();
      System.out.println("rowCount=" + rowCount);
    catch (Exception e) {
      e.printStackTrace();
    finally {
      try {
        pstmt.close();
        conn.close();
      catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }
}

           
       
Related examples in the same category
1.  Insert Text File To Oracle
2.  Demo Prepared Statement Set BinaryStream
3.  Demo PreparedStatement Set Character Stream
























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