You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
**SwiftSQLExt** introduces some basic conveniences on top of it.
11
11
12
-
SwiftSQL was created for [Pulse](https://github.com/kean/Pulse) where it is embedded internally. The entire library is just 300 lines of code, but it gets you 80% there.
12
+
SwiftSQL was created for [Pulse](https://github.com/kean/Pulse) where it is embedded internally. The entire library fits just under 300 lines of code, but gets you 80% there.
13
13
14
14
<br/>
15
15
@@ -23,7 +23,7 @@ To start reading or writing to a database, you need to open a connection.
23
23
let db =trySQLConnection(url: storeURL)
24
24
```
25
25
26
-
By default, the database is opened in readwrite mode and is created if it doesn't exist.
26
+
By default, the database is opened in readwrite mode and is created if it doesn't exist.`SQLConnection` has multiple options for opening the database.
27
27
28
28
### `SQLStatement`
29
29
@@ -38,7 +38,6 @@ The life-cycle of a prepared statement object usually goes like this:
38
38
1. Create the prepared statement object using a connection:
0 commit comments