File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ See [Why Adopt GRDB?](Documentation/WhyAdoptGRDB.md) if you are looking for your
63
63
64
64
## Features
65
65
66
- GRDB ships with :
66
+ Programming tools for both database beginners and SQLite experts :
67
67
68
68
- [ Access to raw SQL and SQLite] ( #sqlite-api )
69
69
- [ Records] ( #records ) : Fetching and persistence methods for your custom structs and class hierarchies.
@@ -72,18 +72,21 @@ GRDB ships with:
72
72
- [ WAL Mode Support] ( #database-pools ) : Extra performance for multi-threaded applications.
73
73
- [ Migrations] : Transform your database as your application evolves.
74
74
- [ Database Observation] : Observe database changes and transactions.
75
- - [ Swift Concurrency] : ` try await ` your database (Xcode 13.3.1+).
76
- - [ Combine Support] : Access and observe the database with Combine publishers.
77
- - [ RxSwift Support] ( http://github.com/RxSwiftCommunity/RxGRDB ) : Access and observe the database with RxSwift observables.
78
75
- [ Full-Text Search]
79
76
- [ Encryption] ( #encryption )
80
77
- [ Support for Custom SQLite Builds] ( Documentation/CustomSQLiteBuilds.md )
81
78
79
+ In-depth integration with our programming environment:
80
+
81
+ - [ Swift Concurrency] : ` try await ` your database (Xcode 13.3.1+).
82
+ - [ SwiftUI] ( http://github.com/groue/GRDBQuery ) : Access and observe the database from your SwiftUI views.
83
+ - [ Combine] ( Documentation/Combine.md ) : Access and observe the database with Combine publishers.
84
+ - [ RxSwift] ( http://github.com/RxSwiftCommunity/RxGRDB ) : Access and observe the database with RxSwift observables.
82
85
83
86
## Usage
84
87
85
88
<details open >
86
- <summary >Start using the database in four easy steps</summary >
89
+ <summary >Start using the database in four steps</summary >
87
90
88
91
``` swift
89
92
import GRDB
You can’t perform that action at this time.
0 commit comments