Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-rdbms/garage
Database drivers for the Pharo language
https://github.com/pharo-rdbms/garage
database mysql pharo postgresql sqlite3
Last synced: about 12 hours ago
JSON representation
Database drivers for the Pharo language
- Host: GitHub
- URL: https://github.com/pharo-rdbms/garage
- Owner: pharo-rdbms
- License: mit
- Created: 2016-10-18T12:46:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-07T10:56:45.000Z (almost 5 years ago)
- Last Synced: 2024-08-03T17:09:33.475Z (4 months ago)
- Topics: database, mysql, pharo, postgresql, sqlite3
- Language: Smalltalk
- Size: 266 KB
- Stars: 8
- Watchers: 16
- Forks: 11
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - Garage - Database drivers for the Pharo language. (Databases)
README
# Garage
Database drivers for the Pharo language.
## Drivers
Garage currently has drivers for:
- PostgreSQL V2
- MySQL
- SQLLite 3## Install Garage
To install Garage on your Pharo image you can just execute the following script:
```Smalltalk
Metacello new
githubUser: 'pharo-rdbms' project: 'garage' commitish: 'master' path: '';
baseline: 'Garage';
load
```To add Garage Seaside to your baseline just add this:
```Smalltalk
spec
baseline: 'Garage'
with: [ spec repository: 'github://pharo-rdbms/garage:master' ]
```Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.?.
You can also load a specific driver adding this snippet to your baseline:
```Smalltalk
spec
baseline: 'Garage'
with: [ spec
loads: 'postgresV2';
repository: 'github://pharo-rdbms/garage' ]
```Possible drivers been:
- postgresV2
- sqlite3
- mysql