Re: Best way to loop a map of maps

2013-12-03 Thread James Ferguson
`update-in` could be helpful, depending on what exactly you're doing. (doseq [keyA keys, keyB otherkeys] (update-in m [keyA keyB] some-function)) On Tuesday, December 3, 2013 6:05:14 PM UTC-5, Ryan wrote: > > Hi all, > > I am trying to figure out a better way to loop the following map than > u

Re: java.jdbc - (sql/where ...) with multiple values (i.e. 'x in (1,2,3')

2013-07-08 Thread James Ferguson
On Monday, July 8, 2013 5:28:07 PM UTC-4, Colin Yates wrote: > > Using the latest release of java.jdbc, does anybody know how I can > construct a where clause when I want to check if the value is one of many > values? > > For example, if I have a filter {:age [1 2 3 4]} then (sql/where filter)