import java.sql.Connection; 
import java.sql.DriverManager; 
import java.sql.PreparedStatement; 
 
public class DemoPreparedStatementSetBigDecimal { 
  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) throws Exception { 
    Connection conn = null; 
    PreparedStatement pstmt = null; 
    String query = null; 
    try { 
      conn = getConnection(); 
      query = "insert into  BIG_DECIMAL_TABLE(id, big_decimal) values(?, ?)"; 
      pstmt = conn.prepareStatement(query); 
      pstmt.setString(1, "001"); 
      pstmt.setBigDecimal(2, new java.math.BigDecimal("123456789")); 
      // execute query, and return number of rows created 
      int rowCount = pstmt.executeUpdate(); 
      System.out.println("rowCount=" + rowCount); 
    } catch (Exception e) { 
      e.printStackTrace(); 
    } finally { 
      pstmt.close(); 
      conn.close(); 
    } 
  } 
} 
 
            
          
  
  |