https://github.com/rko281/pharo-odbc-old
ODBC framework for Pharo
https://github.com/rko281/pharo-odbc-old
Last synced: 2 months ago
JSON representation
ODBC framework for Pharo
- Host: GitHub
- URL: https://github.com/rko281/pharo-odbc-old
- Owner: rko281
- License: mit
- Created: 2021-02-08T09:36:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-23T15:07:17.000Z (over 4 years ago)
- Last Synced: 2025-02-11T12:21:18.214Z (4 months ago)
- Language: HTML
- Size: 1.2 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pharo-ODBC
ODBC framework for [Pharo](https://pharo.org/) based on [Dolphin Smalltalk](https://github.com/dolphinsmalltalk/Dolphin)'s Database Connection package.
Thanks to [InfOil](http://www.infoil.com.ar) for supporting this project.### Installation
```Smalltalk
Metacello new
repository: 'github://rko281/Pharo-ODBC';
baseline: 'ODBC';
load
```On non-Windows platforms you will also need to install an appropriate ODBC Driver Manager:
- MacOS: [iODBC](http://www.iodbc.org/)
- Linux: [unixODBC](http://www.unixodbc.org/)### Getting Started
- See the [Database Connection section](http://www.object-arts.com/downloads/docs/index.html?databaseconnectivity.htm) in the Dolphin Smalltalk Education Center
- Note that in Pharo-ODBC, Dolphin classes prefixed `DB` are now prefixed `ODBC`. For example `DBConnection`becomes `ODBCConnection`. Method names remain the same.
- [Another source of Database Connection documentation](http://duch.mimuw.edu.pl/~sl/teaching/00_01/Delfin_EC/DatabaseConnection/DatabaseConnection.htm)### Unit Tests
The folder test-resources contains compressed files required by the unit tests - northwind.mdb (Access) and northwind.sql (SQL Server). Unpack these to the root image directory to run the tests (see test classes for further info).### Licence
[MIT Licence](https://github.com/rko281/Pharo-ODBC/blob/main/LICENSE).
[Dolphin Smalltalk](https://github.com/dolphinsmalltalk/Dolphin/blob/master/LICENSE) Copyright (c) 2015 Object Arts
Dolphin Smalltalk ODBC Database Connection Package Copyright (c) Object Arts Ltd, 1997-2003. Portions copyright CGI Group (Europe) Ltd, 1997.