File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
GRDBAsyncDemo/GRDBAsyncDemo
GRDBCombineDemo/GRDBCombineDemo Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ struct AppDatabase {
17
17
/// Application can use a `DatabasePool`, while SwiftUI previews and tests
18
18
/// can use a fast in-memory `DatabaseQueue`.
19
19
///
20
- /// See <https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections >
20
+ /// See <https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections >
21
21
private let dbWriter : any DatabaseWriter
22
22
23
23
/// The DatabaseMigrator that defines the database schema.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ extension AppDatabase {
24
24
try fileManager. createDirectory ( at: folderURL, withIntermediateDirectories: true )
25
25
26
26
// Connect to a database on disk
27
- // See https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections
27
+ // See https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections
28
28
let dbURL = folderURL. appendingPathComponent ( " db.sqlite " )
29
29
let dbPool = try DatabasePool ( path: dbURL. path)
30
30
@@ -58,7 +58,7 @@ extension AppDatabase {
58
58
/// Creates an empty database for SwiftUI previews
59
59
static func empty( ) -> AppDatabase {
60
60
// Connect to an in-memory database
61
- // See https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections
61
+ // See https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections
62
62
let dbQueue = try ! DatabaseQueue ( )
63
63
return try ! AppDatabase ( dbQueue)
64
64
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ struct AppDatabase {
18
18
/// Application can use a `DatabasePool`, while SwiftUI previews and tests
19
19
/// can use a fast in-memory `DatabaseQueue`.
20
20
///
21
- /// See <https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections >
21
+ /// See <https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections >
22
22
private let dbWriter : any DatabaseWriter
23
23
24
24
/// The DatabaseMigrator that defines the database schema.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ extension AppDatabase {
24
24
try fileManager. createDirectory ( at: folderURL, withIntermediateDirectories: true )
25
25
26
26
// Connect to a database on disk
27
- // See https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections
27
+ // See https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections
28
28
let dbURL = folderURL. appendingPathComponent ( " db.sqlite " )
29
29
let dbPool = try DatabasePool ( path: dbURL. path)
30
30
@@ -58,7 +58,7 @@ extension AppDatabase {
58
58
/// Creates an empty database for SwiftUI previews
59
59
static func empty( ) -> AppDatabase {
60
60
// Connect to an in-memory database
61
- // See https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections
61
+ // See https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections
62
62
let dbQueue = try ! DatabaseQueue ( )
63
63
return try ! AppDatabase ( dbQueue)
64
64
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ final class AppDatabase {
16
16
/// Application can use a `DatabasePool`, and tests can use a fast
17
17
/// in-memory `DatabaseQueue`.
18
18
///
19
- /// See <https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections >
19
+ /// See <https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections >
20
20
private let dbWriter : any DatabaseWriter
21
21
22
22
/// The DatabaseMigrator that defines the database schema.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ extension AppDatabase {
17
17
try fileManager. createDirectory ( at: folderURL, withIntermediateDirectories: true )
18
18
19
19
// Connect to a database on disk
20
- // See https://github .com/groue/GRDB .swift/blob/master/README.md#database-connections
20
+ // See https://swiftpackageindex .com/groue/grdb .swift/documentation/grdb/databaseconnections
21
21
let dbURL = folderURL. appendingPathComponent ( " db.sqlite " )
22
22
let dbPool = try DatabasePool ( path: dbURL. path)
23
23
You can’t perform that action at this time.
0 commit comments