Re: [Pharo-users] using glorp and active record

2016-09-27 Thread Sean Glazier
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

Re: [Pharo-users] using glorp and active record

2016-09-27 Thread Esteban A. Maringolo
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

Re: [Pharo-users] using glorp and active record

2016-09-27 Thread Brad Selfridge
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

Re: [Pharo-users] using glorp and active record

2016-08-27 Thread stepharo
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

Re: [Pharo-users] using glorp and active record

2016-08-08 Thread Esteban A. Maringolo
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.

[Pharo-users] using glorp and active record

2016-08-08 Thread Sean Glazier
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.