Questions About Garage

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

Questions About Garage

stepharo
Hi

Olivier Auverlot is writing a nice article on Garage for Linux mag and I got some questions that popped up.
Guillermo is on holiday now for a week but I still want to put on paper my questions:

To check for a driver we pass a symbol

GADriver isAvailable: #postgresv2

I found that a bit error prone

Olivier creates also manually the connection string

MesCD >> MesCDConnectionString

    ^'postgresV2://localhost:5432/mescd?user=olivier&password=motdepasse'


Here the postgresV2 has an upper case.

So I'm wondering if we missed something.

I was thinking that I would expect more something like that:

GADriver isAvailable: GADriver postgresv2

and


MesCD >> MesCDConnectionString

    ^ GADriver postgresV2 base: 'mescd' user: 'olivier' pass: 'motdepasse'

And we can imagine to have variation for port and url