To enable compile 3.1.2 with java 5
This commit is contained in:
parent
543d6c917a
commit
225b8e822a
|
@ -1128,12 +1128,6 @@ public class CPreparedStatement extends CStatement implements PreparedStatement
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNClob(int parameterIndex, NClob value) throws SQLException
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void setNClob(int parameterIndex, Reader reader, long length)
|
public void setNClob(int parameterIndex, Reader reader, long length)
|
||||||
throws SQLException
|
throws SQLException
|
||||||
{
|
{
|
||||||
|
@ -1159,21 +1153,25 @@ public class CPreparedStatement extends CStatement implements PreparedStatement
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setNString(int parameterIndex, String value) throws SQLException
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* In order to compile in Java 6 you must add these methods
|
||||||
|
|
||||||
|
public void setNClob(int parameterIndex, NClob value) throws SQLException
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException
|
public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNString(int parameterIndex, String value) throws SQLException
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRowId(int parameterIndex, RowId x) throws SQLException{}
|
public void setRowId(int parameterIndex, RowId x) throws SQLException{}
|
||||||
|
*/
|
||||||
|
|
||||||
} // CPreparedStatement
|
} // CPreparedStatement
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue