Skip to content

Commit 3e47f1b

Browse files
committed
[symfony#1926] Tweaking MSSQL code example
1 parent 3f223ba commit 3e47f1b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

cookbook/configuration/pdo_session_storage.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ For PostgreSQL, the statement should look like this:
184184
);
185185
186186
Microsoft SQL Server
187-
~~~~~~~~~~
187+
~~~~~~~~~~~~~~~~~~~~
188188

189189
For MSSQL, the statement might look like the following:
190190

@@ -197,5 +197,11 @@ For MSSQL, the statement might look like the following:
197197
PRIMARY KEY CLUSTERED
198198
(
199199
[session_id] ASC
200-
) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
200+
) WITH (
201+
PAD_INDEX = OFF,
202+
STATISTICS_NORECOMPUTE = OFF,
203+
IGNORE_DUP_KEY = OFF,
204+
ALLOW_ROW_LOCKS = ON,
205+
ALLOW_PAGE_LOCKS = ON
206+
) ON [PRIMARY]
201207
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

0 commit comments

Comments
 (0)