Hi,
I'm trying to connect to a mssql db with the Zend Framework, my application.ini looks like this:
resources.db.adapter = "sqlsrv"
resources.db.params.host = "localhost\SQLExpress"
resources.db.params.username = "*"
resources.db.params.password = "**"
resources.db.params.dbname = "Database"
resources.db.isDefaultTableAdapter = true
Is there anything wrong with the above?
Thanks.