Pharo environment: http://www.pharo-project.org/home
To install the opendbx driver for pharo, you need to:
Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfOpenDBXDriver';
load.
(((Smalltalk at: #ConfigurationOfOpenDBXDriver)
perform: #project)
perform: #version: with: #stable)
load
Ensuring this was installed ok
Execute the following script in your pharo environment:
Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfGlorpDBX';
load.
Then, for installing Glorp for OpenDBX just execute:
(((Smalltalk at: #ConfigurationOfGlorpDBX)
perform: #project)
perform: #version: with: #stable)
load
If you want to use the PostgreSQL smalltalk native driver, you can execute instead:
(((Smalltalk at: #ConfigurationOfGlorpDBX)
perform: #project)
perform: #version: with: #stable)
load: 'GlorpPostgresV2Native'
Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfDBXTools';
load.
(((Smalltalk at: #ConfigurationOfDBXTools)
perform: #project)
perform: #version: with: #stable)
load: 'Phoseydon'
Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfDBXTools';
load.
(((Smalltalk at: #ConfigurationOfDBXTools)
perform: #project)
perform: #version: with: #stable)
load: 'Neptuno'