Most voted "gorm" questions
GORM is a ORM (Object-Relational Mapping) for Grails (framework for building web applications through the Groovy programming language) If the doubt is not about "GORM", do not use this tag, even if you are using "GORM" in your project.
Learn more…4 questions
Sort by count of
-
2
votes1
answer138
viewsProblems updating registry data with dataBinding on Grails
I have the following domains: class Cliente { static belongsTo = [empresa: Empresa] static constraints = { } } class Empresa { /* aqui temos alguns atributos*/ } By creating a new register of…
-
2
votes0
answers29
viewsLogin with GORM with intercalated return between ID and 0
Guys, I’m learning to code in the GO language, and I made an api with a login system. func Authenticate(db *gorm.DB, auth models.UserAuthForm) uint { hasher.Write([]byte(auth.Password)) pass_hash :=…
-
0
votes1
answer85
viewsRemove database data with GRAILS AND GORM
I’m learning a little bit about GRAILS and I’m having the following problem I can display the information of some registered users usually more when I try to delete them I can’t and I get no error,…
-
0
votes1
answer83
viewsIt’s making a mistake when I try to do the ORM
I created a table but when I run the application more than once it gives this problem. Why does this happen? environments { development{ dataSource { dbCreate = "update" // one of 'create',…