Zend Framework 2, PDO dblib driver, how to change SQL Platform Decorator

筅森魡賤 提交于 2019-12-11 19:24:21

问题


It seems that ZF2 with the PDO:dblib driver defaults to using the SQL92 SQL decorator. How do I use the DI system to tell it to use the SqlServer decorator instead? Just can't get my head around it.

The issue is that the paginator attempts to use LIMIT/OFFSET syntax which doesn't work in SQL Server.

Another way of phrasing it is how do I customise the Paginator returned from fetchAll() on a table object to use the SqlServer platform?

Chris


回答1:


OK, well I found there's a much easier way to do it, after much digging through the Zend Framework. Simply set up your database config like this:

'db' => array(
    'driver' => 'Pdo',
    'dsn' => 'dblib:host=xxx;dbname=xxx',
    'username' => 'xxxxxxxx',
    'password' => 'xxxxxxxx',
    'charset' => 'UTF-8',
    'platform' => 'SqlServer'
)

Now I'm getting different errors, will continue the story!



来源:https://stackoverflow.com/questions/18691192/zend-framework-2-pdo-dblib-driver-how-to-change-sql-platform-decorator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!