SQL Server 2008 returns “Memory limit of 10240 KB exceeded for buffered query”

前端 未结 3 1255
滥情空心
滥情空心 2021-01-04 06:09

I\'m trying to fill a HTML table with some SQL Server 2008 r2 data, the controller (php_sqlsrv) works fine, the tables are filled very well, but when I try to retrieve a 200

3条回答
  •  难免孤独
    2021-01-04 06:28

    add two lines in php.ini

    extension=php_pdo_sqlsrv_55_ts.dll
    extension=php_sqlsrv_55_ts.dll
    client_buffer_max_kb_size = '50240'
    sqlsrv.ClientBufferMaxKBSize = 50240
    

提交回复
热议问题