Hi,
Sorry for the delay been really busy. there is aclass called ActiveRecord
wher you can subclass model objects from and follow the instructions, glorp
will build the database descriptions and mappings. The sequence numbers
were defined in the database. I was using an existing model to map and
There is the Glorp Mailing List / Google Group at
glorp-gr...@googlegroups.com
Activity there is rare, but people still read it.
Regards!
Esteban A. Maringolo
2016-09-27 10:21 GMT-03:00 Brad Selfridge :
> Could I be added to any invite list. I have been working on some tools
> surrounding maki
Could I be added to any invite list. I have been working on some tools
surrounding making GLORP easier to setup and use.
Thanks,
-
Brad Selfridge
--
View this message in context:
http://forum.world.st/using-glorp-and-active-record-tp4909996p4917215.html
Sent from the Pharo Smalltalk User
Hi esteban
Niall will probably contact you because he is releasing a new version of
Glorp.
Stef
Le 8/8/16 à 17:01, Esteban A. Maringolo a écrit :
How did you create the tables? There is a sequence for the ID in the database?
Also, I don't understand why you call it "ActiveRecord".
If you c
How did you create the tables? There is a sequence for the ID in the database?
Also, I don't understand why you call it "ActiveRecord".
If you can share some code, DDL of the table, I'll be able to help you better.
Regards,
Esteban A. Maringolo
ps: I'm cross replying to the Glorp mailing list.
Hi,
I have been trying to get glorp using active record working in pharo 5.
I have a descriptor class for it and the classes inherit from active Record.
I describe the table as:
tableForAnswer: aTable
| vistorId questionId |
(aTable createFieldNamed: 'id' type: platform serial) bePrimaryKey.
que