Convert SQL Query to play Query Builder Syntax











up vote
0
down vote

favorite












I need help with converting an SQL-Query to something I can use inside play!



The original Query looks like this:



SELECT * FROM `triplestore`
WHERE `owning_admin_id` IS NOT NULL
AND `is_public` IS true;


My goal is to get something like



Triplestore.find.where()
.isNotNull("owningAdmin")
.is("is_public", true)
.findList();


Is this even possible or do I have to use JPQL? What would that Query look like?



Thanks in advance,

Hagen










share|improve this question




























    up vote
    0
    down vote

    favorite












    I need help with converting an SQL-Query to something I can use inside play!



    The original Query looks like this:



    SELECT * FROM `triplestore`
    WHERE `owning_admin_id` IS NOT NULL
    AND `is_public` IS true;


    My goal is to get something like



    Triplestore.find.where()
    .isNotNull("owningAdmin")
    .is("is_public", true)
    .findList();


    Is this even possible or do I have to use JPQL? What would that Query look like?



    Thanks in advance,

    Hagen










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I need help with converting an SQL-Query to something I can use inside play!



      The original Query looks like this:



      SELECT * FROM `triplestore`
      WHERE `owning_admin_id` IS NOT NULL
      AND `is_public` IS true;


      My goal is to get something like



      Triplestore.find.where()
      .isNotNull("owningAdmin")
      .is("is_public", true)
      .findList();


      Is this even possible or do I have to use JPQL? What would that Query look like?



      Thanks in advance,

      Hagen










      share|improve this question















      I need help with converting an SQL-Query to something I can use inside play!



      The original Query looks like this:



      SELECT * FROM `triplestore`
      WHERE `owning_admin_id` IS NOT NULL
      AND `is_public` IS true;


      My goal is to get something like



      Triplestore.find.where()
      .isNotNull("owningAdmin")
      .is("is_public", true)
      .findList();


      Is this even possible or do I have to use JPQL? What would that Query look like?



      Thanks in advance,

      Hagen







      java playframework-2.0






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 24 '12 at 12:18

























      asked Aug 24 '12 at 12:01









      Hagen

      16019




      16019
























          3 Answers
          3






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          You can use the and() method:



          Triplestore.find.where().and(Expr.isNotNull("owningAdmin"),Expr.eq("is_public", true)).findList();


          Don't forget to add the com.avaje.ebean.Expr import.






          share|improve this answer




























            up vote
            0
            down vote













            In Hibernate Criteria:



            List<Triplestore> triplestores = 
            (List<Triplestore>) session.createCriteria(Triplestore.class)
            .add( Restrictions.isNotNull("owning_admin_id") )
            .add( Restrictions.eq("is_public", Boolean.TRUE) ).list();


            Regards,






            share|improve this answer




























              up vote
              0
              down vote













              You said "something I can use inside play!", so I'm assuming any third party library is OK. Here's a solution using jOOQ (disclaimer: I work for the vendor).



              I'm assuming you're using jOOQ's code generator here:



              Result<TriplestoreRecord> result =
              ctx.selectFrom(TRIPLESTORE)
              .where(TRIPLESTORE.OWNING_ADMIN_ID.isNotNull())
              .and(TRIPLESTORE.IS_PUBLIC)
              .fetch();





              share|improve this answer





















                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f12109058%2fconvert-sql-query-to-play-query-builder-syntax%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes








                up vote
                2
                down vote



                accepted










                You can use the and() method:



                Triplestore.find.where().and(Expr.isNotNull("owningAdmin"),Expr.eq("is_public", true)).findList();


                Don't forget to add the com.avaje.ebean.Expr import.






                share|improve this answer

























                  up vote
                  2
                  down vote



                  accepted










                  You can use the and() method:



                  Triplestore.find.where().and(Expr.isNotNull("owningAdmin"),Expr.eq("is_public", true)).findList();


                  Don't forget to add the com.avaje.ebean.Expr import.






                  share|improve this answer























                    up vote
                    2
                    down vote



                    accepted







                    up vote
                    2
                    down vote



                    accepted






                    You can use the and() method:



                    Triplestore.find.where().and(Expr.isNotNull("owningAdmin"),Expr.eq("is_public", true)).findList();


                    Don't forget to add the com.avaje.ebean.Expr import.






                    share|improve this answer












                    You can use the and() method:



                    Triplestore.find.where().and(Expr.isNotNull("owningAdmin"),Expr.eq("is_public", true)).findList();


                    Don't forget to add the com.avaje.ebean.Expr import.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Aug 24 '12 at 12:18









                    nico_ekito

                    19.4k44879




                    19.4k44879
























                        up vote
                        0
                        down vote













                        In Hibernate Criteria:



                        List<Triplestore> triplestores = 
                        (List<Triplestore>) session.createCriteria(Triplestore.class)
                        .add( Restrictions.isNotNull("owning_admin_id") )
                        .add( Restrictions.eq("is_public", Boolean.TRUE) ).list();


                        Regards,






                        share|improve this answer

























                          up vote
                          0
                          down vote













                          In Hibernate Criteria:



                          List<Triplestore> triplestores = 
                          (List<Triplestore>) session.createCriteria(Triplestore.class)
                          .add( Restrictions.isNotNull("owning_admin_id") )
                          .add( Restrictions.eq("is_public", Boolean.TRUE) ).list();


                          Regards,






                          share|improve this answer























                            up vote
                            0
                            down vote










                            up vote
                            0
                            down vote









                            In Hibernate Criteria:



                            List<Triplestore> triplestores = 
                            (List<Triplestore>) session.createCriteria(Triplestore.class)
                            .add( Restrictions.isNotNull("owning_admin_id") )
                            .add( Restrictions.eq("is_public", Boolean.TRUE) ).list();


                            Regards,






                            share|improve this answer












                            In Hibernate Criteria:



                            List<Triplestore> triplestores = 
                            (List<Triplestore>) session.createCriteria(Triplestore.class)
                            .add( Restrictions.isNotNull("owning_admin_id") )
                            .add( Restrictions.eq("is_public", Boolean.TRUE) ).list();


                            Regards,







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Aug 24 '12 at 12:24









                            Manu Navarro

                            54649




                            54649






















                                up vote
                                0
                                down vote













                                You said "something I can use inside play!", so I'm assuming any third party library is OK. Here's a solution using jOOQ (disclaimer: I work for the vendor).



                                I'm assuming you're using jOOQ's code generator here:



                                Result<TriplestoreRecord> result =
                                ctx.selectFrom(TRIPLESTORE)
                                .where(TRIPLESTORE.OWNING_ADMIN_ID.isNotNull())
                                .and(TRIPLESTORE.IS_PUBLIC)
                                .fetch();





                                share|improve this answer

























                                  up vote
                                  0
                                  down vote













                                  You said "something I can use inside play!", so I'm assuming any third party library is OK. Here's a solution using jOOQ (disclaimer: I work for the vendor).



                                  I'm assuming you're using jOOQ's code generator here:



                                  Result<TriplestoreRecord> result =
                                  ctx.selectFrom(TRIPLESTORE)
                                  .where(TRIPLESTORE.OWNING_ADMIN_ID.isNotNull())
                                  .and(TRIPLESTORE.IS_PUBLIC)
                                  .fetch();





                                  share|improve this answer























                                    up vote
                                    0
                                    down vote










                                    up vote
                                    0
                                    down vote









                                    You said "something I can use inside play!", so I'm assuming any third party library is OK. Here's a solution using jOOQ (disclaimer: I work for the vendor).



                                    I'm assuming you're using jOOQ's code generator here:



                                    Result<TriplestoreRecord> result =
                                    ctx.selectFrom(TRIPLESTORE)
                                    .where(TRIPLESTORE.OWNING_ADMIN_ID.isNotNull())
                                    .and(TRIPLESTORE.IS_PUBLIC)
                                    .fetch();





                                    share|improve this answer












                                    You said "something I can use inside play!", so I'm assuming any third party library is OK. Here's a solution using jOOQ (disclaimer: I work for the vendor).



                                    I'm assuming you're using jOOQ's code generator here:



                                    Result<TriplestoreRecord> result =
                                    ctx.selectFrom(TRIPLESTORE)
                                    .where(TRIPLESTORE.OWNING_ADMIN_ID.isNotNull())
                                    .and(TRIPLESTORE.IS_PUBLIC)
                                    .fetch();






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Nov 22 at 14:53









                                    Lukas Eder

                                    131k70428929




                                    131k70428929






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.





                                        Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                        Please pay close attention to the following guidance:


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f12109058%2fconvert-sql-query-to-play-query-builder-syntax%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Trompette piccolo

                                        Slow SSRS Report in dynamic grouping and multiple parameters

                                        Simon Yates (cyclisme)