iBatis, Spring and postgres stored procedure

2005-12-02 Thread Lunohodov
I stuck into a problem and after a few resultless hours I would like to aks for your help. I searched for a similar problem(the forum as also fired some googles) but could not find anything so I am starting a new thread... I have a PostgreSQL database with several stored procedures for fetching,

Re: [Fwd: How to pass a parameter to collection property?]

2005-12-02 Thread Jeff Butler
Here's how to do it with a map:   Map map = new HashMap(); map.put("parameterY", parameterY); map.put("parameterX", parameterX); List results = sqlMap.queryForList("getProductsByCatId", map);