[ANN] Pharo Glorp port release

GP
Guillermo Polito
Mon, Sep 26, 2011 4:43 AM

Hi!

We are reaaaaally happy to announce (at last) a very very stable release of
the new Glorp port :D.  We've done a lot to achieve the following results
with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test
    intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by
    opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx
    (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last 4
years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

*Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform:
#version: with: #stable) load*

Also, you can try loading only Glorp (maybe because you want to integrate it
with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform:
#version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to
allow people working in the Software business to create easy CRUD -the same
scaffolding idea from RoR for example- including some of the following
features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions
    to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in
every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes

Hi! We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D. We've done a lot to achieve the following results with Glorp: OpenDBX Oracle: - 7 errors related to Blobs, which are not supported by opendbx. - 1 failure related to timestamp cast (and I don't understand the test intention yet :P) OpenDBX MySql: - 100% green tests :D OpenDBX PostgreSQL: - 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again). OpenDBX SQLite: - 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates. Native PostgresV2 Driver: - 2 failures with blobs So far, some FAQs: *¿What is the difference between this port and the old one?* Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P) *¿How can I load it?* If you want to load Glorp + OpenDBX, you can try the following: *Gofer it squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfGlorpDBX'; load. (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load* Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver): Gofer it squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfGlorp'; load. (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load *¿How did we test it?* We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. *¿What's coming next?* *We are working for your happiness (?).* Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features: - (create a class model + magritte descriptions) from a database schema - [if you already have a descripted class model] use magritte descriptions to create a database schema - use magritte descriptions to create glorp mappings And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;) So, thanks again to ESUG for sponsoring the project :). Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes
SD
stephane ducasse
Mon, Sep 26, 2011 6:14 AM

Excellent news!

Stef

On Sep 26, 2011, at 6:43 AM, Guillermo Polito wrote:

Hi!

We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D.  We've done a lot to achieve the following results with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load

Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

Excellent news! Stef On Sep 26, 2011, at 6:43 AM, Guillermo Polito wrote: > Hi! > > We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D. We've done a lot to achieve the following results with Glorp: > > OpenDBX Oracle: > - 7 errors related to Blobs, which are not supported by opendbx. > - 1 failure related to timestamp cast (and I don't understand the test intention yet :P) > > OpenDBX MySql: > - 100% green tests :D > > OpenDBX PostgreSQL: > - 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again). > > OpenDBX SQLite: > - 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates. > > Native PostgresV2 Driver: > - 2 failures with blobs > > So far, some FAQs: > > ¿What is the difference between this port and the old one? > Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P) > > ¿How can I load it? > If you want to load Glorp + OpenDBX, you can try the following: > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorpDBX'; > load. > > (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load > > Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver): > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorp'; > load. > > (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load > > ¿How did we test it? > We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. > > ¿What's coming next? > We are working for your happiness (?). > > Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features: > > - (create a class model + magritte descriptions) from a database schema > - [if you already have a descripted class model] use magritte descriptions to create a database schema > - use magritte descriptions to create glorp mappings > > And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;) > > > So, thanks again to ESUG for sponsoring the project :). > > Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org
JR
James Robertson
Mon, Sep 26, 2011 2:18 PM

When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on #display sent to Transcript

On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote:

Hi!

We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D.  We've done a lot to achieve the following results with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load

Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on #display sent to Transcript On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote: > Hi! > > We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D. We've done a lot to achieve the following results with Glorp: > > OpenDBX Oracle: > - 7 errors related to Blobs, which are not supported by opendbx. > - 1 failure related to timestamp cast (and I don't understand the test intention yet :P) > > OpenDBX MySql: > - 100% green tests :D > > OpenDBX PostgreSQL: > - 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again). > > OpenDBX SQLite: > - 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates. > > Native PostgresV2 Driver: > - 2 failures with blobs > > So far, some FAQs: > > ¿What is the difference between this port and the old one? > Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P) > > ¿How can I load it? > If you want to load Glorp + OpenDBX, you can try the following: > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorpDBX'; > load. > > (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load > > Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver): > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorp'; > load. > > (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load > > ¿How did we test it? > We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. > > ¿What's coming next? > We are working for your happiness (?). > > Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features: > > - (create a class model + magritte descriptions) from a database schema > - [if you already have a descripted class model] use magritte descriptions to create a database schema > - use magritte descriptions to create glorp mappings > > And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;) > > > So, thanks again to ESUG for sponsoring the project :). > > Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org James Robertson http://www.jarober.com jarober@gmail.com
MM
Mariano Martinez Peck
Mon, Sep 26, 2011 2:20 PM

On Mon, Sep 26, 2011 at 4:18 PM, James Robertson jarober@gmail.com wrote:

When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on
#display sent to Transcript

Yes, sorry for the stupid mistake and thanks for letting us know. Please
take
#postLoadGlorpDriverDBXTalkPharo  and comment the line "Transcript display."
and proceed :)

We will fix it now anyway.

Cheers

On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote:

Hi!

We are reaaaaally happy to announce (at last) a very very stable release of
the new Glorp port :D.  We've done a lot to achieve the following results
with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test
    intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by
    opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx
    (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last
4 years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

*Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform:
#version: with: #stable) load*

Also, you can try loading only Glorp (maybe because you want to integrate
it with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform:
#version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to
allow people working in the Software business to create easy CRUD -the same
scaffolding idea from RoR for example- including some of the following
features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions
    to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in
every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

James Robertson
http://www.jarober.com
jarober@gmail.com


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

On Mon, Sep 26, 2011 at 4:18 PM, James Robertson <jarober@gmail.com> wrote: > When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on > #display sent to Transcript > > Yes, sorry for the stupid mistake and thanks for letting us know. Please take #postLoadGlorpDriverDBXTalkPharo and comment the line "Transcript display." and proceed :) We will fix it now anyway. Cheers > > On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote: > > Hi! > > We are reaaaaally happy to announce (at last) a very very stable release of > the new Glorp port :D. We've done a lot to achieve the following results > with Glorp: > > OpenDBX Oracle: > - 7 errors related to Blobs, which are not supported by opendbx. > - 1 failure related to timestamp cast (and I don't understand the test > intention yet :P) > > OpenDBX MySql: > - 100% green tests :D > > OpenDBX PostgreSQL: > - 7 errors and 1 failure related to Blobs, which are not supported by > opendbx (again). > > OpenDBX SQLite: > - 6 failures related to large objects, which are not supported by opendbx > (again again).. 2 (expected) failures related to times & dates. > > Native PostgresV2 Driver: > - 2 failures with blobs > > So far, some FAQs: > > *¿What is the difference between this port and the old one?* > Almost 4 years of work of the VW team with tons of bugfixing (see the last > 4 years release notes from Glorp for more detail :P) > > *¿How can I load it?* > If you want to load Glorp + OpenDBX, you can try the following: > > *Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorpDBX'; > load. > > (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: > #version: with: #stable) load* > > Also, you can try loading only Glorp (maybe because you want to integrate > it with your own database driver): > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfGlorp'; > load. > > (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: > #version: with: #stable) load > > *¿How did we test it?* > We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. > > *¿What's coming next?* > *We are working for your happiness (?).* > > Hehe, our next step is to release the DBXMagritte project, which aims to > allow people working in the Software business to create easy CRUD -the same > scaffolding idea from RoR for example- including some of the following > features: > > - (create a class model + magritte descriptions) from a database schema > - [if you already have a descripted class model] use magritte descriptions > to create a database schema > - use magritte descriptions to create glorp mappings > > And then, you can use the same descriptions for your Seaside app, or in > every magritte-friend framework you like ;) > > > So, thanks again to ESUG for sponsoring the project :). > > Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org > > > James Robertson > http://www.jarober.com > jarober@gmail.com > > > > > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org > > -- Mariano http://marianopeck.wordpress.com
JR
James Robertson
Mon, Sep 26, 2011 2:52 PM

I figured that out easily enough.  The next question I have is - where can I find current doc for using the lower level OpenDBX piece?  I'm trying to connect to PostgreSQL on my Mac, if that matters

On Sep 26, 2011, at 10:20 AM, Mariano Martinez Peck wrote:

On Mon, Sep 26, 2011 at 4:18 PM, James Robertson jarober@gmail.com wrote:
When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on #display sent to Transcript

Yes, sorry for the stupid mistake and thanks for letting us know. Please take
#postLoadGlorpDriverDBXTalkPharo  and comment the line "Transcript display." and proceed :)

We will fix it now anyway.

Cheers

On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote:

Hi!

We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D.  We've done a lot to achieve the following results with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load

Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

I figured that out easily enough. The next question I have is - where can I find current doc for using the lower level OpenDBX piece? I'm trying to connect to PostgreSQL on my Mac, if that matters On Sep 26, 2011, at 10:20 AM, Mariano Martinez Peck wrote: > > > On Mon, Sep 26, 2011 at 4:18 PM, James Robertson <jarober@gmail.com> wrote: > When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on #display sent to Transcript > > > Yes, sorry for the stupid mistake and thanks for letting us know. Please take > #postLoadGlorpDriverDBXTalkPharo and comment the line "Transcript display." and proceed :) > > We will fix it now anyway. > > Cheers > > > > > On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote: > >> Hi! >> >> We are reaaaaally happy to announce (at last) a very very stable release of the new Glorp port :D. We've done a lot to achieve the following results with Glorp: >> >> OpenDBX Oracle: >> - 7 errors related to Blobs, which are not supported by opendbx. >> - 1 failure related to timestamp cast (and I don't understand the test intention yet :P) >> >> OpenDBX MySql: >> - 100% green tests :D >> >> OpenDBX PostgreSQL: >> - 7 errors and 1 failure related to Blobs, which are not supported by opendbx (again). >> >> OpenDBX SQLite: >> - 6 failures related to large objects, which are not supported by opendbx (again again).. 2 (expected) failures related to times & dates. >> >> Native PostgresV2 Driver: >> - 2 failures with blobs >> >> So far, some FAQs: >> >> ¿What is the difference between this port and the old one? >> Almost 4 years of work of the VW team with tons of bugfixing (see the last 4 years release notes from Glorp for more detail :P) >> >> ¿How can I load it? >> If you want to load Glorp + OpenDBX, you can try the following: >> >> Gofer it >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfGlorpDBX'; >> load. >> >> (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: #version: with: #stable) load >> >> Also, you can try loading only Glorp (maybe because you want to integrate it with your own database driver): >> >> Gofer it >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfGlorp'; >> load. >> >> (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: #version: with: #stable) load >> >> ¿How did we test it? >> We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. >> >> ¿What's coming next? >> We are working for your happiness (?). >> >> Hehe, our next step is to release the DBXMagritte project, which aims to allow people working in the Software business to create easy CRUD -the same scaffolding idea from RoR for example- including some of the following features: >> >> - (create a class model + magritte descriptions) from a database schema >> - [if you already have a descripted class model] use magritte descriptions to create a database schema >> - use magritte descriptions to create glorp mappings >> >> And then, you can use the same descriptions for your Seaside app, or in every magritte-friend framework you like ;) >> >> >> So, thanks again to ESUG for sponsoring the project :). >> >> Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes >> _______________________________________________ >> Esug-list mailing list >> Esug-list@lists.esug.org >> http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org > > James Robertson > http://www.jarober.com > jarober@gmail.com > > > > > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org > > > > > -- > Mariano > http://marianopeck.wordpress.com > James Robertson http://www.jarober.com jarober@gmail.com
GP
Guillermo Polito
Mon, Sep 26, 2011 2:59 PM

While we update the site,  I'd recommend you the draft PBE chapter of
DBXTalk-OpenDBXDriver :).

Cheers,
Guille

On Mon, Sep 26, 2011 at 11:52 AM, James Robertson jarober@gmail.com wrote:

I figured that out easily enough.  The next question I have is - where can
I find current doc for using the lower level OpenDBX piece?  I'm trying to
connect to PostgreSQL on my Mac, if that matters

On Sep 26, 2011, at 10:20 AM, Mariano Martinez Peck wrote:

On Mon, Sep 26, 2011 at 4:18 PM, James Robertson jarober@gmail.comwrote:

When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on
#display sent to Transcript

Yes, sorry for the stupid mistake and thanks for letting us know. Please
take
#postLoadGlorpDriverDBXTalkPharo  and comment the line "Transcript
display." and proceed :)

We will fix it now anyway.

Cheers

On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote:

Hi!

We are reaaaaally happy to announce (at last) a very very stable release
of the new Glorp port :D.  We've done a lot to achieve the following results
with Glorp:

OpenDBX Oracle:

  • 7 errors related to Blobs, which are not supported by opendbx.
  • 1 failure related to timestamp cast (and I don't understand the test
    intention yet :P)

OpenDBX MySql:

  • 100% green tests :D

OpenDBX PostgreSQL:

  • 7 errors and 1 failure related to Blobs, which are not supported by
    opendbx (again).

OpenDBX SQLite:

  • 6 failures related to large objects, which are not supported by opendbx
    (again again).. 2 (expected) failures related to times & dates.

Native PostgresV2 Driver:

  • 2 failures with blobs

So far, some FAQs:

¿What is the difference between this port and the old one?
Almost 4 years of work of the VW team with tons of bugfixing (see the last
4 years release notes from Glorp for more detail :P)

¿How can I load it?
If you want to load Glorp + OpenDBX, you can try the following:

*Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.

(((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform:
#version: with: #stable) load*

Also, you can try loading only Glorp (maybe because you want to integrate
it with your own database driver):

Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorp';
load.

(((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform:
#version: with: #stable) load

¿How did we test it?
We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms.

¿What's coming next?
We are working for your happiness (?).

Hehe, our next step is to release the DBXMagritte project, which aims to
allow people working in the Software business to create easy CRUD -the same
scaffolding idea from RoR for example- including some of the following
features:

  • (create a class model + magritte descriptions) from a database schema
  • [if you already have a descripted class model] use magritte descriptions
    to create a database schema
  • use magritte descriptions to create glorp mappings

And then, you can use the same descriptions for your Seaside app, or in
every magritte-friend framework you like ;)

So, thanks again to ESUG for sponsoring the project :).

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

James Robertson
http://www.jarober.com
jarober@gmail.com


Esug-list mailing list
Esug-list@lists.esug.org
http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org

While we update the site, I'd recommend you the draft PBE chapter of DBXTalk-OpenDBXDriver :). Cheers, Guille On Mon, Sep 26, 2011 at 11:52 AM, James Robertson <jarober@gmail.com> wrote: > I figured that out easily enough. The next question I have is - where can > I find current doc for using the lower level OpenDBX piece? I'm trying to > connect to PostgreSQL on my Mac, if that matters > > On Sep 26, 2011, at 10:20 AM, Mariano Martinez Peck wrote: > > > > On Mon, Sep 26, 2011 at 4:18 PM, James Robertson <jarober@gmail.com>wrote: > >> When trying that out in a freshly downloaded Pharo 1.3, I got an MNU on >> #display sent to Transcript >> >> > Yes, sorry for the stupid mistake and thanks for letting us know. Please > take > #postLoadGlorpDriverDBXTalkPharo and comment the line "Transcript > display." and proceed :) > > We will fix it now anyway. > > Cheers > > > > >> >> On Sep 26, 2011, at 12:43 AM, Guillermo Polito wrote: >> >> Hi! >> >> We are reaaaaally happy to announce (at last) a very very stable release >> of the new Glorp port :D. We've done a lot to achieve the following results >> with Glorp: >> >> OpenDBX Oracle: >> - 7 errors related to Blobs, which are not supported by opendbx. >> - 1 failure related to timestamp cast (and I don't understand the test >> intention yet :P) >> >> OpenDBX MySql: >> - 100% green tests :D >> >> OpenDBX PostgreSQL: >> - 7 errors and 1 failure related to Blobs, which are not supported by >> opendbx (again). >> >> OpenDBX SQLite: >> - 6 failures related to large objects, which are not supported by opendbx >> (again again).. 2 (expected) failures related to times & dates. >> >> Native PostgresV2 Driver: >> - 2 failures with blobs >> >> So far, some FAQs: >> >> *¿What is the difference between this port and the old one?* >> Almost 4 years of work of the VW team with tons of bugfixing (see the last >> 4 years release notes from Glorp for more detail :P) >> >> *¿How can I load it?* >> If you want to load Glorp + OpenDBX, you can try the following: >> >> *Gofer it >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfGlorpDBX'; >> load. >> >> (((Smalltalk at: #ConfigurationOfGlorpDBX) perform: #project) perform: >> #version: with: #stable) load* >> >> Also, you can try loading only Glorp (maybe because you want to integrate >> it with your own database driver): >> >> Gofer it >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfGlorp'; >> load. >> >> (((Smalltalk at: #ConfigurationOfGlorp) perform: #project) perform: >> #version: with: #stable) load >> >> *¿How did we test it?* >> We've tested it in Pharo 1.2 and Pharo 1.3 + Jenkins CogVms. >> >> *¿What's coming next?* >> *We are working for your happiness (?).* >> >> Hehe, our next step is to release the DBXMagritte project, which aims to >> allow people working in the Software business to create easy CRUD -the same >> scaffolding idea from RoR for example- including some of the following >> features: >> >> - (create a class model + magritte descriptions) from a database schema >> - [if you already have a descripted class model] use magritte descriptions >> to create a database schema >> - use magritte descriptions to create glorp mappings >> >> And then, you can use the same descriptions for your Seaside app, or in >> every magritte-friend framework you like ;) >> >> >> So, thanks again to ESUG for sponsoring the project :). >> >> Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes >> _______________________________________________ >> Esug-list mailing list >> Esug-list@lists.esug.org >> http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org >> >> >> James Robertson >> http://www.jarober.com >> jarober@gmail.com >> >> >> >> >> _______________________________________________ >> Esug-list mailing list >> Esug-list@lists.esug.org >> http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org >> >> > > > -- > Mariano > http://marianopeck.wordpress.com > > > James Robertson > http://www.jarober.com > jarober@gmail.com > > > > > _______________________________________________ > Esug-list mailing list > Esug-list@lists.esug.org > http://lists.esug.org/mailman/listinfo/esug-list_lists.esug.org > >
MM
Mariano Martinez Peck
Mon, Sep 26, 2011 9:30 PM

So, thanks again to ESUG for sponsoring the project :).

And thanks to Alan for all his help and effort in Glorp.

Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes

--
You received this message because you are subscribed to the Google Groups
"proyecto_relacional" group.
To post to this group, send email to proyecto_relacional@googlegroups.com.
To unsubscribe from this group, send email to
proyecto_relacional+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/proyecto_relacional?hl=en.

> > So, thanks again to ESUG for sponsoring the project :). > > And thanks to Alan for all his help and effort in Glorp. > Guillermo, Santiago, Gisela, Mariano, Esteban and Diogenes > > -- > You received this message because you are subscribed to the Google Groups > "proyecto_relacional" group. > To post to this group, send email to proyecto_relacional@googlegroups.com. > To unsubscribe from this group, send email to > proyecto_relacional+unsubscribe@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/proyecto_relacional?hl=en. > -- Mariano http://marianopeck.wordpress.com
J
jtuchel@objektfabrik.de
Thu, Oct 13, 2011 11:56 AM

Hi,

DBXTalk is good work!
I really love to see that stuff going forward!

Before I spend a lot of time playing around: has anybody tried using
Pharo/GLORP/ODBC (Access or SQLSrv) on Windows?
Or Pharo/GLORP/SQLite on Windows?
Is there some place on the web where I can find info on how to set this up?

In an open source context, this is probably a heretic question, and if I
could choose freely, Linux and PostgresQL would be my favorite.
OTOH: The fact that each windows installation comes with an Access engine
and respective ODBC driver makes the combination very attractive for
starting something on a windows machine really fast. No installation of
anything but Pharo, no need for admin rights or anything. Just set up the
odbc driver and off you go! Great chance to show the strength of Smalltalk
and Glorp to other team members and friends...
SQLite is a similar story: copy the dlls onto the machine and the journey
can start.

Joachim

Hi, DBXTalk is good work! I really love to see that stuff going forward! Before I spend a lot of time playing around: has anybody tried using Pharo/GLORP/ODBC (Access or SQLSrv) on Windows? Or Pharo/GLORP/SQLite on Windows? Is there some place on the web where I can find info on how to set this up? In an open source context, this is probably a heretic question, and if I could choose freely, Linux and PostgresQL would be my favorite. OTOH: The fact that each windows installation comes with an Access engine and respective ODBC driver makes the combination very attractive for starting something on a windows machine really fast. No installation of anything but Pharo, no need for admin rights or anything. Just set up the odbc driver and off you go! Great chance to show the strength of Smalltalk and Glorp to other team members and friends... SQLite is a similar story: copy the dlls onto the machine and the journey can start. Joachim
MM
Mariano Martinez Peck
Thu, Oct 13, 2011 3:32 PM

On Thu, Oct 13, 2011 at 1:56 PM, jtuchel@objektfabrik.de <
jtuchel@objektfabrik.de> wrote:

Hi,

DBXTalk is good work!
I really love to see that stuff going forward!

Thanks.

Before I spend a lot of time playing around: has anybody tried using
Pharo/GLORP/ODBC (Access or SQLSrv) on Windows?

Yes, but I have to admit that it's almost the most complicated scenario to
configure. At least I know someone tried Pharo/Glorp/ODBC/SQL Server.
I think you can just give it a try. Get the dll of OpenDBX (they are in our
website), get a Pharo VM that has a working FFI, and give it a try.

Or Pharo/GLORP/SQLite on Windows?

Yes, this works almost out of the box. In fact, I can provide you a zip that
contains Pharo VM + image + opendbx dll + sqlite dll.

Is there some place on the web where I can find info on how to set this up?

In an open source context, this is probably a heretic question, and if I
could choose freely, Linux and PostgresQL would be my favorite.

Sure, that's pretty easy. OpenDBX and PostgreSQL are easy to make it work in
Linux.

OTOH: The fact that each windows installation comes with an Access engine
and respective ODBC driver makes the combination very attractive for
starting something on a windows machine really fast. No installation of
anything but Pharo, no need for admin rights or anything. Just set up the
odbc driver and off you go! Great chance to show the strength of Smalltalk
and Glorp to other team members and friends...

well more or less. In the case of DBX you will need the OpenDBX library
anyway, even if being ODBC. OpenDBX sees ODBC just as another backend. And
of course, that's only if you like accessing by ODBC (which I don't like
BTW).  Of course, you can create a database driver for Glorp that uses the
ODBC driver of squeak in which case you wouldn't need the OpenDBX driver.

SQLite is a similar story: copy the dlls onto the machine and the journey
can start.

yes, that's even easier. As I say, it can be provided in a "DBXOneClick" :)

Cheers

--
Mariano
http://marianopeck.wordpress.com

On Thu, Oct 13, 2011 at 1:56 PM, jtuchel@objektfabrik.de < jtuchel@objektfabrik.de> wrote: > Hi, > > DBXTalk is good work! > I really love to see that stuff going forward! > > Thanks. > Before I spend a lot of time playing around: has anybody tried using > Pharo/GLORP/ODBC (Access or SQLSrv) on Windows? > Yes, but I have to admit that it's almost the most complicated scenario to configure. At least I know someone tried Pharo/Glorp/ODBC/SQL Server. I think you can just give it a try. Get the dll of OpenDBX (they are in our website), get a Pharo VM that has a working FFI, and give it a try. > Or Pharo/GLORP/SQLite on Windows? > Yes, this works almost out of the box. In fact, I can provide you a zip that contains Pharo VM + image + opendbx dll + sqlite dll. > Is there some place on the web where I can find info on how to set this up? > > http://dbxtalk.smallworks.com.ar/Compiling%20and%20installing%20OpenDBX http://dbxtalk.smallworks.com.ar/Compiling%20for%20different%20backends > In an open source context, this is probably a heretic question, and if I > could choose freely, Linux and PostgresQL would be my favorite. > Sure, that's pretty easy. OpenDBX and PostgreSQL are easy to make it work in Linux. > OTOH: The fact that each windows installation comes with an Access engine > and respective ODBC driver makes the combination very attractive for > starting something on a windows machine really fast. No installation of > anything but Pharo, no need for admin rights or anything. Just set up the > odbc driver and off you go! Great chance to show the strength of Smalltalk > and Glorp to other team members and friends... > well more or less. In the case of DBX you will need the OpenDBX library anyway, even if being ODBC. OpenDBX sees ODBC just as another backend. And of course, that's only if you like accessing by ODBC (which I don't like BTW). Of course, you can create a database driver for Glorp that uses the ODBC driver of squeak in which case you wouldn't need the OpenDBX driver. > SQLite is a similar story: copy the dlls onto the machine and the journey > can start. > > yes, that's even easier. As I say, it can be provided in a "DBXOneClick" :) Cheers -- Mariano http://marianopeck.wordpress.com