File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1103,8 +1103,8 @@ users.limit(5, offset: 5)
11031103
11041104#### Recursive and Hierarchical Queries
11051105
1106- We can perform a recursive or hierarchical query using a [ query's] ( #queries ) ` with `
1107- function.
1106+ We can perform a recursive or hierarchical query using a [ query's] ( #queries )
1107+ [ ` WITH ` ] ( https://sqlite.org/lang_with.html ) function.
11081108
11091109``` swift
11101110// Get the management chain for the manager with id == 8
@@ -2092,7 +2092,7 @@ databases to an existing connection:
20922092```swift
20932093let db = try Connection (" db.sqlite" )
20942094
2095- try db.attach (.uri (" external.sqlite" , parameters : [.mode (.readOnly )], as : " external" )
2095+ try db.attach (.uri (" external.sqlite" , parameters : [.mode (.readOnly )]) , as : " external" )
20962096// ATTACH DATABASE 'file:external.sqlite?mode=ro' AS 'external'
20972097
20982098let table = Table (" table" , database : " external" )
You can’t perform that action at this time.
0 commit comments