sql-kit icon indicating copy to clipboard operation
sql-kit copied to clipboard

*️⃣ Build SQL queries in Swift. Extensible, protocol-based design that supports DQL, DML, and DDL.

Results 14 sql-kit issues
Sort by recently updated
recently updated
newest added

This change adds a configuration parameter (`SQLDialect.supportsMultiRowInsert`) to support dialects that do not support multi row inserts (e.g. Oracle). This is `true` by default. If `false`, a warning will be...

```swift var logger = Logger(label: "My Logger") logger.logLevel = .trace // to show label let sqldb = app.db as! SQLDatabase let logdb = sqldb.logging(to: logger) try! logdb.raw("select 1;").run().wait() // Expected:...

bug

We have a project that started failing row decoding when upgrading from 3.28.0. I haven't dug into the problem but was able to sketch out a failing test that I...

I'd like do be able to structure a query like: ```sql INSERT INTO VALUES EXCEPT SELECT FROM ``` There might be a way to do this that I'm not sure...

enhancement