Guillermo Polito
unread,Jan 5, 2012, 3:22:42 PM1/5/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to dbx...@googlegroups.com, Pharo Development, A friendly place where any question about pharo is welcome, The complete and open-source solution to relational database access, ESUG Mailing list, glorp...@googlegroups.com, clubsm...@googlegroups.com, proyecto_...@googlegroups.com
Hi!
I'm willing to announce the second beta release of Phoseydon, part of the DBXTalk project, supported by ESUG :).
It's main new feature is a simple internal dsl to generate entities, so you can create applications from something like:
personEntity := application entityNamed: #Person.
personEntity
hasString: #nickname;
hasInteger: #age;
hasBoolean: #isProgrammer.
petEntity := application entityNamed: #Pet.
petEntity
hasString: #nickname.
personEntity hasMany: #Pet as: #pets.
petEntity hasOne: #Person as: #owner.
Also, a little manual is already written in:
http://dbxtalk.smallworks.com.ar/pier/DocumentationFor download:
http://dbxtalk.smallworks.com.ar/pier/Download
Issues, mails, questions:
http://dbxtalk.smallworks.com.ar/pier/SupportCheers,
the DBXTalk Team