laravel / framework

The Laravel Framework.
https://laravel.com
MIT License
32.26k stars 10.93k forks source link

[ODBC Driver 18 for SQL Server][SQL Server]Incorrect syntax near 'offset'. #52952

Open gsferro opened 3 days ago

gsferro commented 3 days ago

Laravel Version

11.23.5

PHP Version

8.2.7

Database Driver & Version

ODBC Driver 18 for SQL Server

Description

App Version
Laravel 11.23.5
PHP 8.2.7
OS Win 11
RGBD Sqlsrv

When calling paginate, it is generating the error below using sqlsrv

UsuariosAutorizados::paginate(2);
SQLSTATE[42000]: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Incorrect syntax near 'offset'. (Connection: sqlsrv, SQL: select * from [usuarios_autorizados] order by [id] asc offset 10 rows fetch next 10 rows only)

image

Steps To Reproduce


# model
Users::paginate(2);

# view
$users->links()

# url
.../users?page=2

image

staudenmeir commented 2 days ago

Hi @gsferro, What version of SQL Server are you using? It looks like an older one. Laravel 11 requires SQL Server 2017+.