From 2b8b6617ec078406e22df6c456bd373a3e2ad6e5 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 31 Jan 2024 11:34:22 +0900 Subject: [PATCH] docs: fix supported SQL Server version We are using OFFSET. SQL Server 2012 also reached the end of life: Jul 12, 2022. https://learn.microsoft.com/en-us/lifecycle/products/microsoft-sql-server-2012 --- user_guide_src/source/intro/requirements.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/intro/requirements.rst b/user_guide_src/source/intro/requirements.rst index e025198a8cc0..a21f8b2a9cdc 100644 --- a/user_guide_src/source/intro/requirements.rst +++ b/user_guide_src/source/intro/requirements.rst @@ -56,7 +56,7 @@ Currently supported databases are: - MySQL via the ``MySQLi`` driver (version 5.1 and above only) - PostgreSQL via the ``Postgre`` driver (version 7.4 and above only) - SQLite3 via the ``SQLite3`` driver - - Microsoft SQL Server via the ``SQLSRV`` driver (version 2005 and above only) + - Microsoft SQL Server via the ``SQLSRV`` driver (version 2012 and above only) - Oracle Database via the ``OCI8`` driver (version 12.1 and above only) Not all of the drivers have been converted/rewritten for CodeIgniter4.