[ANN][DBX] Phoseydon Beta2

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[ANN][DBX] Phoseydon Beta2

Guillermo Polito
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/Documentation

For download:
http://dbxtalk.smallworks.com.ar/pier/Download

Issues, mails, questions:
http://dbxtalk.smallworks.com.ar/pier/Support

Cheers,
the DBXTalk Team
Reply | Threaded
Open this post in threaded view
|

Re: [ANN][DBX] Phoseydon Beta2

Sven Van Caekenberghe
Cool !

On 05 Jan 2012, at 21:22, Guillermo Polito wrote:

> 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/Documentation
>
> For download:
> http://dbxtalk.smallworks.com.ar/pier/Download
>
> Issues, mails, questions:
> http://dbxtalk.smallworks.com.ar/pier/Support
>
> Cheers,
> the DBXTalk Team