Registering Zend Database Adapter in Registry
If you’re using Zend Framework 1.8+, and created your project with the command line tool, then it’s as simple as registering your database settings in your application.ini config file. resources.db.adapter = “PDO_MYSQL” resources.db.params.host = “your.database.host” resources.db.params.dbname = “database_name” resources.db.params.username = “username” resources.db.params.password = “password” resources.db.isDefaultTableAdapter = true If your database settings are preceded by resources.db … Read more