Tagged Questions
0
votes
1answer
42 views
how to embedd mysql in grails standalone application
I am creating a grails standalone application with with embedded tomcat server
the application works fine with embedded tomcat server.
But i need to integrate embedded mysql with the application.
Any ...
1
vote
0answers
42 views
JasperReports for grails: Using HashMap as Model?
Imagine I have two classes in Groovy that look like that:
class Person {
int id;
String name;
}
class Item {
int id;
int price;
}
Now it would be simple to create a JasperReport listing ...
0
votes
1answer
75 views
List and findAll
So I have a method that traverses through my users and finds where there ids are the same. It then adds those users to an array. I have it so it will find all the users with the same IDs. Not I need ...
0
votes
2answers
81 views
Querying a many to many join table with HQL
I need some advice for creating a hql query.
Situation: I have set of Nodes to which can be assigned a configurable amount of Flags. To do this I have the following classes/tables:
Classes:
class ...
0
votes
1answer
55 views
Grails query from multiples domains
I have issues. Please help me if you can.
I have 3 domains called:
- DomainA(id, propA1,propA2)<br/>
- DomainB(id, propB1,propB2,forgeinKeyToDomainA)
- DomainC(id, ...
0
votes
1answer
105 views
how to apply if condition in Hibernate queries in grails
i am using SpringSourceTool for grails project developement .
i had this requirement to execute a query with some if condition in it , first I tried the query in sql query browser
and it works fine
...
0
votes
1answer
108 views
I get “a foreign key constraint fails” error when attempting to join two classes/tables
I have these classes, abbreviated for practical reasons:
class CV {
Date dateCreated
static hasMany=[proposals: Proposal]
}
class Proposal {
String name
Date date_started
static ...
0
votes
1answer
66 views
Grails not displaying SQL results in table, what am I missing?
I'm obviously missing something obvious here but I cant for the life of me work out what, I've setup a view to display a custom SQL query, but the screen is showing nothing, here's what I've got
...
0
votes
0answers
60 views
Grails linking tables using pre-existing SQL join table
I've got three tables, scenarios, forms and a link table to connect the two, a form can belong to multiple scenarios, and a scenario can have multiple forms, the link table holds that relationship ...
0
votes
1answer
85 views
grails displaying values from two tables using primary and foreign keys
This is, I hope, probably quite obvious but I can't find an example that I think answers my issue.
I have an SQL database that I cant modify and within it are two tables, linked with ...
0
votes
2answers
94 views
grails table not found error on sql 2008 legacy table
I'm trying to link a new grails project to a pre-existing SQL server 2008 database, trouble is when I try to list/update or anything nothing works and I get an error reading
Table "TEST_EXEC_QUEUE" ...
1
vote
1answer
98 views
Grails: Join two tables using plain sql
I want to write sql query that joins two tables and return the result. Lets say we have two domain classes:
class Patient {
static hasMany = [visits: Visit]
String firstName
}
and
class ...
0
votes
2answers
122 views
Can anyone decipher this SQL Stack Trace?
I have a stack trace that is not making any sense to me. I think the essence of it is the "Data source name not found and no default driver specified" part, but I've registered a driver and I'm not ...
3
votes
2answers
205 views
Grails transactions (not GORM based but using Groovy Sql)
My Grails application is not using GORM but instead uses my own SQL and DML code to read and write the database (The database is a huge normalized legacy one and this was the only viable option).
So, ...
3
votes
2answers
393 views
How to fetch records in grails by max date and group at same time
I have a table that looks like this:
id name shade date_created
---- ----- ------- ---------------
1 Red bright 10-28-2012
2 Orange light ...
-2
votes
2answers
92 views
Is there a preferred way of logging sql statements?
i want to log sql generated by an application and have started to read about sql logging in a Grails application.
I tried to set the logSql = true setting but this gives me an unreadable set of sql ...
1
vote
1answer
123 views
Grails & GORM: How to specify CREATE INDEX equivalent on a domain-class?
May I share my frustration. GORM (and Grails..) seems to have a VERY limited documentation regarding database indices. I haven't found any help from anywhere on how to create an index for a domain ...
0
votes
1answer
167 views
Why would a sql query hang when run a second time in a Java application?
Context: Grails 2.1, using Groovy SQL to execute SQL statements. Database is Oracle 11G running in a RedHat VM. Grails is running in interactive mode, though running as WAR makes no difference in ...
5
votes
3answers
188 views
Getting 'Referential integrity constraint violation' when deleting domain object
In my crazy universe a Room can have many chairs and chairs can 'belong' to many rooms.
In grails it looks like this. Chairs should not know which room they belong to.
class Room {
String name
...
1
vote
0answers
103 views
Turn SQL String into Grails CreateCriteria
Hi everyone i have this Grails Code:
free_search = ReportFree.createCriteria().list {
or {
report{
ilike("description", "%${params.search}%")
...
0
votes
1answer
207 views
groovy sql updatable cursor - updates not committed until end of cursor
I have this Groovy pseudo-script in a Grails service:
sql.eachRow("""
select id, col1, col2
from mytab
where col1 is null or col2 is null
"""
){
... some code to produce c1, c2 here ...
...
0
votes
0answers
117 views
MongoFile grails plugin : Join queries are not supported by MongoDB
I have a grails application using SQL database and using MongoFile plugin to manage documents in MongoDB. (All domain objects are stored in SQL database and any documents related to domain are stored ...
1
vote
1answer
113 views
Trouble Populating Grails Select Box with SQL Statement
I'm trying to populate a grails select with some rows returned from SQL but for some reason it is not working. I have the following code:
Controller:
import groovy.sql.Sql
class ...
2
votes
5answers
390 views
How can I count how many SQL queries hibernate does in one Grails request?
I need to debug a Grails application with one really slow request. I have SQL logging but would like to see the amount of SQL-queries without counting them manually.
debug 'org.hibernate.SQL'
...
1
vote
3answers
385 views
SQL to HQL 'start with' and 'Connect by Prior'
I need to find a way to get the ids starting with 11, in sql is with 'start with' and 'Connect by prior' but in HQL, how can I do that?, if there is a better way in grails, the help would be great, ...
0
votes
3answers
407 views
groovy SQL rows() method
In my grails app a have next query:
def query = """select
u.id, u.birth_date, u.gender, uht.data
from
user_hra_test as uht
...
4
votes
2answers
947 views
connection pooling and prepared statements with groovy.sql.Sql or JDBC in Grails
After running into this question today: Grails query not using GORM I wonder if using groovy.sql.Sql or JDBC comes with the benefits of connection pooling?
I can see under some circumstances how ...
0
votes
0answers
173 views
grails - How can this SQL Statement be used in a Grails Criteria Query?
I need this statement in a Grails Criteria Query, but I have no idea how to deal with the 'WHERE NOT EXISTS' and the subquery.
SELECT * from massnahme m
WHERE NOT EXISTS (
SELECT a.name, ...
1
vote
2answers
304 views
Grails query to filter on association and only return matching entities
I have the following 1 - M (one way) relationship:
Customer (1) -> (M) Address
I am trying to filter the addresses for a specific customer that contain certain text e.g.
def results = ...
0
votes
1answer
99 views
Does grails/SQL automatically know which indices to use?
I have a simple domain class with two properties. For example:
class Person {
String firstName
String lastName
}
Now I want to use the dynamic finders to find a guy named "Some Guy":
def ...
0
votes
2answers
99 views
Grails Data Modelling dilemma
I'm hoping someone can help me decide the best way to model this design for what sounds like should be a simple use case.
I have a Client domain class. I have a Person command object and a Firm ...
2
votes
1answer
207 views
How do you invoke a database function call from grails?
How do you invoke database functions from grails?
Such as the CONVERT(decimal, timestamp)
Without using groovy SQL like this:
def sql = new Sql(dataSource)
I would like to avoid any SQL ...
3
votes
1answer
103 views
How do I keep Grails from generating the default Hibernate_sequence during dbCreate?
In each of my domains I have defined a custom sequence inside the static mapping closure:
static mapping = {
version false
id generator:'sequence', params:[sequence:'MY_SEQ']
}
When I ...
0
votes
3answers
120 views
Grails trouble saving object id
id is present in the params but does not save to the db. for example
[book.id:1, comments: good]
comments will save to db but book.id does not.
I need to figure out how to save params.book.id ...
2
votes
1answer
232 views
From within a grails HQL, how would I use a (non-aggregate) Oracle function?
If I were retrieving the data I wanted from a plain sql query, the following would suffice:
select * from stvterm where stvterm_code > TT_STUDENT.STU_GENERAL.F_Get_Current_term()
I have a grails ...
2
votes
1answer
193 views
Grails 2.0.4 and sql profiling using p6spy plug-in configuartion
I am using grails 2.0.4. Even though the sql profiler client is connecting; p6spy is not logging anything.
I suspect that the problem lies in the property file, or that there is a conflict with my
...
0
votes
1answer
140 views
Pass Java List to SQL query Grails
i have a populated list:
def someList=... (string values)
and I want to pass this into a SQL statement to restrict which columns the query selects.
db.rows("select ${someList} from ...
0
votes
1answer
136 views
CASE Statement in Groovy SQL
I have some Groovy code that calls the groovy Sql object:
Sql sql = new Sql(dataSource)
sql.execute(insert)
It has worked fine in the past, but I now have some conditional logic that I tried to ...
2
votes
1answer
157 views
Grails many to many sql
I'm trying to make a sql with grails, and I couldn't make it so far...
I have 3 domain classes:
class Device {
String imei
List nodes
static hasMany = [nodes:Node]
}
class Node {
...
0
votes
1answer
103 views
Hibernate/SQL add names/keys to results
I'm using Grails for a web-application and have to create a database-query where I do a calculation with some values.
These values are from the table I'm selecting from AND the grails-application. The ...
1
vote
2answers
228 views
Grails Updating Production Database
What happens in Grails, when you update your model, and deploy it to your web server? Does the existing data get overwritten?
2
votes
1answer
752 views
SQL connection in Grails
In my application there are a few places where I want to use pure SQL. When I hard code the connection details in Sql.newInstance it works fine. For obvious reasons I would prefer to not hard code the ...
1
vote
1answer
206 views
GORM query produces database error (grails 1.1.1)
(this is cross-posted from grailsforum.co.uk)
Hi all, I'm relatively new to Grails (and Spring, Hibernate, etc) so please forgive me if this is a noob question. Googling has got me nowhere, but it's ...
0
votes
1answer
203 views
Adding Plain SQL Tables to Grails App instead of using ORM?
In Grails, how can plain SQL/DDL be used to create / drop tables in the same manner they would be if one were using GORM / ORM?
For example, when using GORM / ORM, the tables used for persistence are ...
0
votes
2answers
621 views
SQL join two tables with a link table between - GORM/Grails
I am trying to build an output as such:
Name source source source
Tim Other TV Radio
Where I want to combine a Person table and a Source table:
Person
ID Name
1 Tim
Source
ID Name
1 ...
1
vote
1answer
422 views
Access DataSource in groovy class in grails dynamically
I need to make a direct sql call using groovy.sql in a non-domain class.
Imagine I have 10 different datasources defined.
I need to be able to figure out which one to use so that I can get the ...
3
votes
2answers
712 views
If I use groovy sql class in grails, does it use the grails connection pooling?
From the examples below in the sql documentation. If I use either of these ways to create a sql instance in the middle of a grails service class, will it use the grails connection pooling? Will it ...
0
votes
1answer
282 views
Hibernate Criteria - Restricting Data Based on Field in One-to-Many Relationship
I need some hibernate/SQL help, please. I'm trying to generate a report against an accounting database. A commission order can have multiple account entries against it.
class ...
-2
votes
2answers
498 views
Two Table Query in Groovy script
How do I handle this SQL query in grails in my ProductsController script? Notice its two tables with a join on the product id.
SELECT p.*,pd.*
FROM products p, products_description pd
WHERE ...
0
votes
1answer
510 views
Grails createCriteria and executeQuery
let's say i have this classes which are being mapped to SQLServer:
class Statistic {
Servicos servico
int totalTime
Date date
static constraints = {
}
}
class Servicos {
...


