Hi, I have a codebase that uses Spring's SimpleJdbcCall to execute stored 
procedures on an Oracle instance. Basically, 

Map<String,Object> response = call.execute(input);

so later there is;

obj.setField(response.get("FIELD"));

However, when I create my H2 function and have it return a HashMap with the 
rows I need, it returns something else. I think it's a Map that wraps a 
resultset that has a list of value objects or something like that. Is there 
a way I can get my function to return a Map with just the field names and 
values?

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/1d9a1ef8-1c2c-45dc-9232-2c148d991c8bn%40googlegroups.com.

Reply via email to