|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jdbc.support.lob.DefaultLobHandler.DefaultLobCreator
Constructor Summary | |
protected |
DefaultLobHandler.DefaultLobCreator()
|
Method Summary | |
void |
close()
Close this LobCreator session and free its temporarily created BLOBs and CLOBs. |
void |
setBlobAsBinaryStream(java.sql.PreparedStatement ps,
int parameterIndex,
java.io.InputStream binaryStream,
int contentLength)
Set the given content as binary stream on the given statement, using the given parameter index. |
void |
setBlobAsBytes(java.sql.PreparedStatement ps,
int parameterIndex,
byte[] content)
Set the given content as bytes on the given statement, using the given parameter index. |
void |
setClobAsAsciiStream(java.sql.PreparedStatement ps,
int parameterIndex,
java.io.InputStream asciiStream,
int contentLength)
Set the given content as ASCII stream on the given statement, using the given parameter index. |
void |
setClobAsCharacterStream(java.sql.PreparedStatement ps,
int parameterIndex,
java.io.Reader characterStream,
int contentLength)
Set the given content as character stream on the given statement, using the given parameter index. |
void |
setClobAsString(java.sql.PreparedStatement ps,
int parameterIndex,
java.lang.String content)
Set the given content as String on the given statement, using the given parameter index. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected DefaultLobHandler.DefaultLobCreator()
Method Detail |
public void setBlobAsBytes(java.sql.PreparedStatement ps, int parameterIndex, byte[] content) throws java.sql.SQLException
LobCreator
setBlobAsBytes
in interface LobCreator
ps
- the PreparedStatement to the set the content onparameterIndex
- the parameter index to usecontent
- the content as byte array
java.sql.SQLException
- if thrown by JDBC methodsPreparedStatement.setBytes(int, byte[])
public void setBlobAsBinaryStream(java.sql.PreparedStatement ps, int parameterIndex, java.io.InputStream binaryStream, int contentLength) throws java.sql.SQLException
LobCreator
setBlobAsBinaryStream
in interface LobCreator
ps
- the PreparedStatement to the set the content onparameterIndex
- the parameter index to usebinaryStream
- the content as InputStream
java.sql.SQLException
- if thrown by JDBC methodsPreparedStatement.setBinaryStream(int, java.io.InputStream, int)
public void setClobAsString(java.sql.PreparedStatement ps, int parameterIndex, java.lang.String content) throws java.sql.SQLException
LobCreator
setClobAsString
in interface LobCreator
ps
- the PreparedStatement to the set the content onparameterIndex
- the parameter index to usecontent
- the content as byte array
java.sql.SQLException
- if thrown by JDBC methodsPreparedStatement.setBytes(int, byte[])
public void setClobAsAsciiStream(java.sql.PreparedStatement ps, int parameterIndex, java.io.InputStream asciiStream, int contentLength) throws java.sql.SQLException
LobCreator
setClobAsAsciiStream
in interface LobCreator
ps
- the PreparedStatement to the set the content onparameterIndex
- the parameter index to useasciiStream
- the content as InputStream
java.sql.SQLException
- if thrown by JDBC methodsPreparedStatement.setBinaryStream(int, java.io.InputStream, int)
public void setClobAsCharacterStream(java.sql.PreparedStatement ps, int parameterIndex, java.io.Reader characterStream, int contentLength) throws java.sql.SQLException
LobCreator
setClobAsCharacterStream
in interface LobCreator
ps
- the PreparedStatement to the set the content onparameterIndex
- the parameter index to usecharacterStream
- the content as InputStream
java.sql.SQLException
- if thrown by JDBC methodsPreparedStatement.setBinaryStream(int, java.io.InputStream, int)
public void close()
LobCreator
NOTE: Needs to be invoked after the involved PreparedStatements have been executed respectively the affected O/R mapping sessions have been flushed. Else, the database resources for the temporary BLOBs might stay allocated.
close
in interface LobCreator
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |