通過PreparedStatement.setObject()方法向Oracle插入Date類型數據,報錯:請求的轉換無效

 

/**
    * Sets the value of the designated parameter with the given object.
    *
    * This method is similar to {@link #setObject(int parameterIndex,
    * Object x, int targetSqlType, int scaleOrLength)},
    * except that it assumes a scale of zero.
    *
    * @param parameterIndex the first parameter is 1, the second is 2, ...
    * @param x the object containing the input parameter value
    * @param targetSqlType the SQL type (as defined in java.sql.Types) to be
    *                      sent to the database
    * @exception SQLException if parameterIndex does not correspond to a parameter
    * marker in the SQL statement; if a database access error occurs or this
    * method is called on a closed PreparedStatement
    * @exception SQLFeatureNotSupportedException if
    * the JDBC driver does not support the specified targetSqlType
    * @see Types
    */
    void setObject(int parameterIndex, Object x, int targetSqlType)
      throws SQLException;

// 調用如下
date = new SimpleDateFormat("yyyy-MM-dd").parse(dateColumn);
preparedStatement.setObject(index,date,Types.DATE);

// 在傳入第二個參數Object x 時,傳入的是date對象,導致報錯: 請求的轉換無效

// 將傳入的對象改爲String類型後解決問題
date = new SimpleDateFormat("yyyy-MM-dd").parse(dateColumn);
String datefmt = new SimpleDateFormat("yyyy-MM-dd").format(date);
preparedStatement.setObject(index,datefmt ,Types.DATE);

// 汗!

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章