@@ -6,7 +6,8 @@ synchronization.
66## Overview
77
88SQLiteData is a [ fast] ( #Performance ) , lightweight replacement for SwiftData, supporting CloudKit
9- synchronization (and even CloudKit sharing), built on top of the popular [ GRDB] library.
9+ synchronization (and even CloudKit sharing), built on top of the popular
10+ [ GRDB] ( https://github.com/groue/GRDB.swift ) library.
1011
1112@Row {
1213 @Column {
@@ -177,11 +178,9 @@ a model context, via a property wrapper:
177178 }
178179}
179180
180- > Important: SQLiteData uses [ GRDB] under the hood for interacting with SQLite, and you will use
181- > its tools for creating transactions for writing to the database, such as the ` database.write `
182- > method above.
183-
184- [ GRDB ] : https://github.com/groue/GRDB.swift
181+ > Important: SQLiteData uses [ GRDB] ( https://github.com/groue/GRDB.swift ) under the hood for
182+ > interacting with SQLite, and you will use its tools for creating transactions for writing
183+ > to the database, such as the ` database.write ` method above.
185184
186185For more information on how SQLiteData compares to SwiftData, see < doc:ComparisonWithSwiftData > .
187186
@@ -249,10 +248,9 @@ for data and keep your views up-to-date when data in the database changes, and y
249248either using its type-safe, discoverable query building APIs, or using its ` #sql ` macro for writing
250249safe SQL strings.
251250
252- Further, this library is built on the popular and battle-tested [ GRDB] library for
253- interacting with SQLite, such as executing queries and observing the database for changes.
254-
255- [ GRDB ] : https://github.com/groue/GRDB.swift
251+ Further, this library is built on the popular and battle-tested
252+ [ GRDB] ( https://github.com/groue/GRDB.swift ) library for interacting with SQLite, such as executing
253+ queries and observing the database for changes.
256254
257255## What is StructuredQueries?
258256
0 commit comments