Pass in the lobHandler that in this example is a plain `DefaultLobHandler`
<<2>>
Using the method `setClobAsCharacterStream`, pass in the contents of the CLOB.
<<3>>
Using the method `setBlobAsBinaryStream`, pass in the contents of the BLOB.
<1> Pass in the lobHandler that in this example is a plain `DefaultLobHandler`
<2> Using the method `setClobAsCharacterStream`, pass in the contents of the CLOB.
<3> Using the method `setBlobAsBinaryStream`, pass in the contents of the BLOB.
Now it's time to read the LOB data from the database. Again, you use a `JdbcTemplate`
with the same instance variable `l` `obHandler` and a reference to a `DefaultLobHandler`.
@ -25263,16 +25261,13 @@ with the same instance variable `l` `obHandler` and a reference to a `DefaultLob
@@ -25263,16 +25261,13 @@ with the same instance variable `l` `obHandler` and a reference to a `DefaultLob
new RowMapper<Map<String, Object>>() {
public Map<String, Object> mapRow(ResultSet rs, int i) throws SQLException {
Map<String, Object> results = new HashMap<String, Object>();