Tagged Questions
0
votes
1answer
23 views
Error when use PropertyNotInList in Grails + Oracle + CLOB
I'm trying to retrieve all objects from oracle 11g database except some objects that contain an especial value in a property.
The code:
//Retrieve thoughts
def thoughts = ...
2
votes
1answer
65 views
Grails Domains: Get by Id not found
I have a Job (using Quartz)
A Service method wich uses get (for a Domain class)
The problem is: sometimes (1 in a 1000) the domain's get(X) method returns null even if the row with id X exists.
If ...
0
votes
1answer
77 views
Grails criteria: how to count results from a grouped subquery?
Ok guys I'm finally stuck with GORM Criteria API implementation facing this problem:
I've got an Oracle view mapped like this:
class MyView implements Serializable {
Long idA
Long idB
...
2
votes
2answers
97 views
Save entities with virtual columns in gorm grails
So , in my application i have a entity with a virtual column.
The column takes values depending on what i save in another column.
On save i have the following error:
java.sql.BatchUpdateException: ...
0
votes
2answers
132 views
Mapping legacy model - table only with unique constraint can be used as Domain Class?
I'm trying to map a table (legacy from the Oracle Forms time) that have only a Unique Key, because some values can be null. The user can choose if the data in other applications exists in char or ...
0
votes
2answers
418 views
Grails wrong alias causing error ORA-00904
I have three domain classes User, Employee and UserEmployee.
class User {
String username
//more atributes omitted
static hasMany = [ userEmployees : UserEmployee ]
static mapping ...
0
votes
2answers
778 views
How to get next id in GRAILS?
I need to get the next available id in a sequence, using GORM or native query.
How can I do this?
I'm using oracle.
UPDATE:
I need this value BEFORE insert, because my row will use this value.
I ...
0
votes
1answer
398 views
'Maximum number of expressions in a list is 1000' error with Grails and Oracle
I'm using Grails with an Oracle database. Most of the data in my application is part of a hierarchy that goes something like this (each item containing the following one):
Direction
Group
Building ...
1
vote
1answer
409 views
Even id values. Tricky sequence mapping (grails oracle)
I'm writing a webapp in grails, and for the first time with oracle underneath. Every table has id generated from sequence and I'm setting id using trigger before insert as shown below:
CREATE TABLE ...
1
vote
0answers
194 views
Grails: specifying classpath for hsqldb
In our project we use Grails as Web-framework, Oracle db for deployment and HSQLDB for development and testing. Some queries use Oracle specific functions such as TRUNC or TO_DATE, unfortunately, ...
6
votes
1answer
5k views
ORA-00972: identifier is too long - Best strategy to avoid it in Grails
I am getting "ORA-00972: identifier is too long" error while saving a domain class object.
Caused by: org.hibernate.exception.SQLGrammarException: could not initialize a collection: ...
2
votes
2answers
152 views
Using different database users with GORM
I´m working on a grails 1.3.7 application, which, by design, the client wants to keep all the users at a database level, so he can leverage his database's features regarding login, permissions, etc. ...
2
votes
5answers
1k views
Testing the Oracle to_date function
I'm writing an integration test in Grails using GORM.
I want to do something like the following:
delete from Statistic
where stat_date = TO_DATE(:month_year, 'MON-YYYY')
But I get the following ...
0
votes
1answer
332 views
Foreign key object as primary key
i have the following domain-class-entity:
class AccountSupplier {
static mapping = {
table 'MY_TABLE'
version false
// references-column-mapping
accountReference: ...
1
vote
2answers
460 views
Id generation problem in Grails when using Oracle and H2 for the same application
I am working on grails application. I must use H2 for development and Oracle for testing and production. I must use separate sequences for each domain class/table when using Oracle so I used the ...
0
votes
2answers
562 views
GORM (Hibernate) Interceptor to run certain SQL before Hibernate runs it in the db in a Grails application?
I have a grails application in which I am using GORM. This works great. However I have a requirement where, before any SQL is called in the database, it has to run a certain stored procedure. So, is ...
2
votes
2answers
850 views
Grails - hasMany has too many, need to limit get() results in Oracle
I am using Oracle and Grails 1.3.7 and have this situation:
Domains
class Publisher {
static hasMany = [books : Book]
}
class Book {
Publisher pub
Date datePublished
}
PublisherController
...
0
votes
2answers
1k views
Grails - Using a VARCHAR2 field as table identifier - foreign key relationship fails
I am integrated with a legacy Oracle database which uses assigned VARCHAR2 values for primary keys. I am creating a one-to-many relationship with this existing table. The legacy table is called ...
4
votes
4answers
2k views
Groovy domain mapping
I have a to save a pdf report into an Oracle DB.
The report's dataType is a byteArray.
The domain definition is as follows:
static constraints = {
report(nullable:false)
company(nullable:false) ...