Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8270697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:39:35+00:00 2026-06-08T06:39:35+00:00

I have a following piece of code which connects to database and executes a

  • 0

I have a following piece of code which connects to database and executes a query, I have a no clarity in placing of this code(Model/Service).

def value
def url      = ConfigurationHolder.config.dataSource.url
def username = ConfigurationHolder.config.dataSource.username
def password = ConfigurationHolder.config.dataSource.password
def driver   = ConfigurationHolder.config.dataSource.driverClassName
def sql      = Sql.newInstance(url, username, password, driver)

sql.eachRow("select field_value from application_configuration where field_name=?", [field]) {
        value=it.field_value
}

I have a class called ApplicationConfiguaration, I am querying on this domain.

I have two doubts

1) where to put the Database connection logic
2) where to put the query execution logic

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T06:39:36+00:00Added an answer on June 8, 2026 at 6:39 am

    If you haven’t created a domain object to represent application_configuration, you should consider that, and use domain object finders or HQL.

    If you need to perform the query outside of GORM, it should probably go in a service. Note that a DataSource object can be automatically injected into your service and that a Sql object can be created directly from it. You could have something like this:

    import groovy.sql.Sql
    
    class ApplicationConfigurationService {
        def dataSource
    
        def valueForName(name) {
            def sql = new Sql(dataSource)
    
            sql.eachRow(...) {
                value=it.field_value
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following piece of code which posts some data into database: $post =
I have the following piece of code which outputs a long article: <?php the_content();
I have the following piece of code in my Model: public function getSite() {
I have following piece of code which tries to load an XML file from
I have the following piece of code which works fine and does what it
I have the following piece of code which is not working the way I
I have the following piece of code which doesn't compile when I try to
I have the following piece of code which uses ICU macros in order to
I have the following piece of code which uses the ALAssets library to store
I have the following piece of code which helps me to write a bunch

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.