Progress is a simple odbc progress service provider for Laravel. It provides odbc Connection by extending the Illuminate Database component of the laravel framework.
noxxie/laravel-db-progress is a Laravel package for progress is a simple odbc progress service provider for laravel. it provides odbc connection by extending the illuminate database component of the laravel framework..
It currently has 0 GitHub stars and 57 downloads on Packagist (latest version v1.1.0).
Install it with composer require noxxie/laravel-db-progress.
Discover more Laravel packages by noxxie
or browse all Laravel packages to compare alternatives.
Last updated
Laravel-Db-Progress is a simple odbc progress service provider for Laravel. It provides odbc connection by extending the Illuminate Database component of the laravel framework. It also provides the grammer changes in order to let everything work.
To connect to the Progress database we utilize the ODBC drivers provided from progress. These must be installed before you can use this package. I found out This website contains all the information you need to install those drivers.
Add the library using composer:
composer require "noxxie/laravel-db-progress"
You can put your Progress credentials into app/config/database.php file
using the following php lines:
'progress' => [
'driver' => 'progress',
'host' => env('PROGRESS_DB_HOST', 'localhost'),
'port' => env('PROGRESS_DB_PORT', 19204),
'database' => env('PROGRESS_DB_DATABASE', 'forge'),
'username' => env('PROGRESS_DB_USERNAME', 'forge'),
'password' => env('PROGRESS_DB_PASSWORD', ''),
'codepage' => env('PROGRESS_DB_CODEPAGE', 'ISO_8859_1'),
'schema' => env('PROGRESS_DB_SCHEMA', 'PUB'),
],
As you can see there is also room to define them in your .env file.
Consult the Laravel framework documentation. Please be aware that some functionality will not work if you do not run the latest version of openedge. You will get an database exception when this accures. Consult the openedge documentation what was introduced in what version.