0
votes
2answers
54 views

Grails transaction never completes

Consider the code below, that tries to create a new SerpKeyword within a transaction and prints to the console to show where it is. if (!serpKeyword) { println "I DIDN'T FIND THE ...
0
votes
1answer
66 views

Grails isn't saving domain classes in the propper database

I have a grails (2.0) application that needs to get certain information from multiple MySQL databases. I can't for the love of God get it to save the domain class in the proper database. My ...
1
vote
1answer
256 views

Grails H2 Database DbConsole - Database backup

I have grails 2.0 which comes with H2 database and dbconsole. I want to take the database backup from dbconsole: databse url : "jdbc:mysql://localhost/opal" Username : root password: (none) in ...
1
vote
1answer
443 views

Grails GORM MySQL generate TEXT or LONGTEXT column

I am using Grails 2.1.1 and MySQL 5.5.27 Community Server. I need to have a Domain class field generate a TEXT or LONGTEXT column. I thought this would be simple, and I've seen numerous examples: ...
0
votes
2answers
219 views

How to execute mysql scripts in cloudfoundry

I have a .sql file (initial sql scripts). I have recently deployed application in cloudfoundry, So I want to run these scripts to make application work, Scripts will update more than 5 db tables. Is ...
0
votes
1answer
535 views

Grails or Hibernate not creating missing table

I'm new to Grails so forgive my ignorance--if other info is helpful I'll do my best to get it posted. I've created a single domain model class ToolKitComponent that is defined as: class ...
14
votes
2answers
10k views

How to make MySQL work on grails 2.0

Grails 2.0 seems to have some changes to DataSource.groovy and I don't seem to be able to get mysql running as it was in 1.3.7 I did grails install-dependency mysql:mysql-connector-java:5.1.16 rather ...
3
votes
1answer
498 views

How to get nullable Constraints with Grails 2.0?

I'm using grails 2.0 with mysql and i want some Domain attributes to be nullable. In my domain class i did: static constraints = { counter(nullable: true) competitors(nullable: true) } ...