Skip to content
Advertisement

How to Query map in Groovy with sql?

I am trying to query a map in Groovy using mysql using:

but I get an error:

what seems to be the problem here?


************************************************* EDIT *****************************************************

I’m now trying to insert the map into a mysql, which I am then querying using:

the sql.eachRow part works fine i.e. I can select, but in the the insert statement I only seem to be inserting the first row within the map i.e.

but:


*********************************** Another EDIT *****************************************************

So trying to loop round all the values in the map, df, with:

results in:

I’m used to R where everything is nice and vectorized. If anyone can help at all that would be excellent!

Advertisement

Answer

What I observed here :

You are trying to insert the java.util.ArrayList [[val11, val12,...],[val21, val22,...]]. you almost close at what you are trying to do.

Note : in comment dagget already mentioned this answer. I am just trying to show in code.

Answer :

Description :

The variable bt is actually BatchingPreparedStatementWrapper object. See the groovy document

So the addBatch() method can accept these types List<Object> or Object[].

Output :

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement