-
### What did you do?
Attempt to use a `DatabaseCollation` after installing multiple.
### What did you expect to happen?
Using a custom collation successfully calls the collation function.
…
-
With the release of GRDB 4.1.0 a few days ago, the framework seems to no longer compile, with an error in `ValueObservation+Rx.swift` on line 17 saying:
`Type 'ValueObservation' does not conform to…
-
I am trying to run the below SQL query
```
SELECT * FROM
(
SELECT
agi.id as agi_id,
agi.day as agi_day,
agi.date as agi_date,
agi.type as agi_type,
ts.id as ts_id,
ts.title as ts…
-
Hi @groue ,
Thanks for your great library, I have a problem in batch insert records while I make my queries in loop.
I use Xcode 10.2 and swift 5.0 .
You can see my code in below image:
[image o…
-
### What did you do?
I'm trying to reproduce raw SQL with GRDB APIs to get `QueryInterfaceRequest` in the end.
```sql
SELECT user.* FROM user
JOIN diff as d1 on d1.userId = user.id
WHERE d1.t…
Kirow updated
5 years ago
-
Would it be possible to stuff the query information (the actual kwargs and the filters) into the `Broker` or the `Results`? This would enable users to get back the query that they ran to get a given r…
-
https://github.com/groue/GRDB.swift/blob/d290102d9cb5c425fee7260034beaa997d581d86/Playgrounds/Tour.playground/Contents.swift#L54-L56
Need to change `import CoreLocation` to `import MapKit`. Not sur…
Kirow updated
5 years ago
-
* [x] I've read and understood the [*CONTRIBUTING* guidelines and have done my best effort to follow](https://github.com/CocoaPods/CocoaPods/blob/master/CONTRIBUTING.md).
# Report
## What di…
groue updated
5 years ago
-
`FluentKit` was created as a proof of concept for changes to how Models could work in Fluent 4. Since the proof of concept was a success, I want to open this issue as an early discussion into the pros…
-
I am trying the following code with combine on a DBPool.
```
let cancellable = dbPool.writePublisher(updates: { (db) -> Int in
let league = League(id: "123", name: "foo", alias: "foo")
…