Hi All, Thanks to Estaban and everyone involved in making Glorp available in Pharo 5.0.
I'm trying to work my way through the examples in the Glorp book (https://ci.inria.fr/pharo-contribution/job/PharoBookWorkInProgress/lastSuccessfulBuild/artifact/book-result/Glorp/Glorp.pdf) but, embarrassingly, haven't got past the first step. My understanding from the book is that I load Glorp with: Metacello new smalltalkhubUser: 'DBXTalk' project: 'Garage'; configuration: 'GarageGlorp'; version: #stable; load. I've also tried loading the Glorp package with: Gofer it url: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo50/main'; configurationOf: 'Glorp'; loadStable but still aren't able to execute the first command in the book: GAGlorpAccessor beDefaultGlorpDriver since GAGlorpAccessor isn't in the image, or, later on: accessor := GarageDatabaseAccessor forLogin: login. accessor login. since GarageDatabaseAccessor also isn't in the image. (I was able to create the login object). What is the required sequence of Montacello / Gofer loads to be able to use Glorp with SQLite3? Thanks, Alistair (who is sure he has missed the obvious)