PreparedStatement: setAsciiStream(int parameterIndex, InputStream x, int length) : PreparedStatement « java.sql « Java by API






PreparedStatement: setAsciiStream(int parameterIndex, InputStream x, int length)

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

public class Main {

  public static void main(String[] args) throws Exception {
    try {
      String url = "jdbc:odbc:databaseName";
      String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
      String user = "guest";
      String password = "guest";
      FileInputStream fis = new FileInputStream("somefile.txt");
      Class.forName(driver);
      Connection connection = DriverManager.getConnection(url, user, password);
      Statement createTable = connection.createStatement();

      createTable.executeUpdate("CREATE TABLE source_code (name CHAR(20), source LONGTEXT)");

      String ins = "INSERT INTO source_code VALUES(?,?)";
      PreparedStatement statement = connection.prepareStatement(ins);

      statement.setString(1, "TryInputStream"); // Set first field
      statement.setAsciiStream(2, fis, fis.available()); // Stream is source

      int rowsUpdated = statement.executeUpdate();
      System.out.println("Rows affected: " + rowsUpdated);
      connection.close();
    } catch (Exception e) {
      System.err.println(e);
    }
  }
}

           
         
  








Related examples in the same category

1.PreparedStatement: addBatch()
2.PreparedStatement: executeUpdate()
3.PreparedStatement: getParameterMetaData()
4.PreparedStatement: getWarnings()
5.PreparedStatement: setBigDecimal(int parameterIndex, BigDecimal x)
6.PreparedStatement: setBinaryStream(int parameterIndex, InputStream x, int length)
7.PreparedStatement: setBoolean(int parameterIndex, boolean x)
8.PreparedStatement: setByte(int parameterIndex, byte x)
9.PreparedStatement: setCharacterStream(int parameterIndex, Reader reader, int length)
10.PreparedStatement: setClob(int parameterIndex, Clob x)
11.PreparedStatement: setDate(int parameterIndex, Date x)
12.PreparedStatement: setDouble(int parameterIndex, double x)
13.PreparedStatement: setInt(int parameterIndex, int x)
14.PreparedStatement: setFetchSize(int rows)
15.PreparedStatement: setFloat(int parameterIndex, float x)
16.PreparedStatement: setLong(int parameterIndex, long x)
17.PreparedStatement: setNull(int parameterIndex, int sqlType)
18.PreparedStatement: setObject(int parameterIndex, Object x)
19.PreparedStatement: setRef(int parameterIndex, Ref x)
20.PreparedStatement: setShort(int parameterIndex, short x)
21.PreparedStatement: setString(int parameterIndex, String x)
22.PreparedStatement: setTime(int parameterIndex, Time x)
23.PreparedStatement: setTimestamp(int parameterIndex, Timestamp x)
24.PreparedStatement: setURL(int parameterIndex, URL x)