RE: High Level DSL for Database Querying

2018-12-11 Thread Korbee Reinout
, 2018 5:46 PM To: pa...@asert.com.au Cc: dev@groovy.apache.org Subject: Re: High Level DSL for Database Querying When I evaluated what to base my framework on, I did not find much that was available and looked interesting, except jOOQ - which at the time started steering away from being pure OS

Re: High Level DSL for Database Querying

2018-10-22 Thread mgbiz
When I evaluated what to base my framework on, I did not find much that was available and looked interesting, except jOOQ - which at the time started steering away from being pure OS (so was a no go for us). The jOOQ webpage licensing FAQ has the following to say on the topic: Can I use "jOOQ O

Re: High Level DSL for Database Querying

2018-10-21 Thread Paul King
I am not a lawyer but as far as I know they offer commercial support as well as completely free via ASL2. But yes, a little bit different to normal. In any case, I was suggesting that it as much a source of inspiration than the only alternative to look at. Cheers, Paul. On Mon, Oct 22, 2018 at 9:

Re: High Level DSL for Database Querying

2018-10-21 Thread MG
Isn't jOOQ no longer completely OS: http://www.jooq.org/legal/licensing#databases ? Quote from their main page: "Use this /free edition /with your favourite /Open Source DB/ using the popular Apache Software License 2.0!" On 22.10.2018 01:28, Paul King wrote: The other thing worth thinking a

Re: High Level DSL for Database Querying

2018-10-21 Thread Paul King
The other thing worth thinking about is comparing what you propose with what is available in existing Java libraries and directed at Java developers. Jooq comes to mind: https://github.com/jOOQ/jOOQ Be worth think about whether a tiny DSL (if needed) above that is a viable alternative to achieve

Re: High Level DSL for Database Querying

2018-10-21 Thread MG
Hi K, as I said, your proposal overlaps in some areas with what my framework does, so I was suggesting you keep the functionality and naming conventions I listed in my last mail in mind when designing the DSL. My framework is more geared towards developers, who need to be able to batch create

Re: High Level DSL for Database Querying

2018-10-20 Thread adithyank
Hi MG, The objective of my proposal is to make "Database querying and result processing" more handy also for non developers. i.e., mostly people who can write shell scripts or some simple perl scripts. In that view, I proposed a wrapper DSL overy groovy's `Sql` class. I feel that your idea is ne

Re: High Level DSL for Database Querying

2018-10-14 Thread MG
Hi, with regards to any moves to this topic it might be good to keep me in the loop, sinc the Groovy framework I have developed (and are working on getting open sourced) at my organization supplies partially overlapping / partially orthogonal functionality to what is being proposed here. It's

Re: High Level DSL for Database Querying

2018-10-12 Thread adithyank
Team, As suggested by Jochen Theodorou in this post, I have created this topic for `Database DSL` The methods given in this thread are some examples. We can either mod