Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/veewee/zend_db_adapter_pdo_odbc_openedge
https://github.com/veewee/zend_db_adapter_pdo_odbc_openedge
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/veewee/zend_db_adapter_pdo_odbc_openedge
- Owner: veewee
- Created: 2012-10-09T08:31:31.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-09T09:03:45.000Z (about 12 years ago)
- Last Synced: 2024-04-14T05:42:04.716Z (7 months ago)
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Zend_Db_Adapter_Pdo_Odbc_Openedge
=================================
Connect to a Progress database with an OpenEdge ODBC connection.
This classes require to enable the PHP PDO extension on your server.Configuration in INI file:
resources.db.adapter = pdo_odbc_openedge
resources.db.params.driver = "{Progress OpenEdge 10.2B driver}"
resources.db.params.host = "localhost"
resources.db.params.username = "username"
resources.db.params.password = "password"
resources.db.params.dbname = "dbname"
resources.db.params.port = "1234"
resources.db.params.schema = "pub"
resources.db.params.charset = "iso8859-1"Initialisation in Bootstrap:
bootstrap('db');
$db = $this->getResource('db');
Zend_Db_Table_Abstract::setDefaultAdapter($db);
return $db;
}
?>