I want to insert a blob to a table in a oracle database. But I don't know the data types of the other columns. I want to pass values for other columns just in Object type.
I know I can use the following code to insert the blob value.
jdbcTemplate.update(
"INSERT INTO LOB_ (BLOB_) VALUES (?)",
new Object[]{new SqlLobValue(inputStream)},
new int[]{Types.BLOB}
);
But my problem is that, I don't know the types of the other columns. Then how can I specify the type in the type array as the third argument of the update(query, args, typeArgs)
method.
Is there any value like a wild card to pass to tell the jdbctemplate to skip checking types for other columns?
I want something like this?
jdbcTemplate.update(
"INSERT INTO LOB_ (BLOB_, NAME, AGE) VALUES (?, ?, ?)",
new Object[]{new SqlLobValue(inputStream), "Some string", 34},
new int[]{Types.BLOB, ?, ?}
);
Can you please try the following. https://docs.spring.io/spring/docs/current/spring-framework-reference/html/jdbc.html