Bo Lingen

Results 45 comments of Bo Lingen

Seems like there's a race condition where that temp table is created/removed: https://github.com/citycide/trilogy/blob/e4833a587651cfb9349087a9a715ee1d5908acb7/src/schema-helpers.ts#L131-L136 This is probably best solved along with #102, although interestingly I have used `Promise.all` with a bunch...

Adding a method for bulk insert is still on the table, but it's worth noting this would also likely be resolved if we could rely on native `returning` behavior. SQLite...

I think at this point `node-sqlite3`, `knex`, and `sql.js` have all been updated to support SQLite's `returning` feature, which could be implemented here and might fix the issue. I'd definitely...

@stefnotch I'm with you all the way 😃 I started down this road with #114 and hit roadblocks I unfortunately don't have the time to investigate right now. I'm more...

`where` and `without` ? I think I'd also like `where` and `except`.

This should also apply to `import`. ```js import { a b } from 'foo' ```

Seems cool, I'd accept a PR for this (I won't have the time to implement it myself currently). I'm not sure about the unary `-` however, that would be a...

@alehander42 > `a.len >= 2 and 'a' in a and 'b' in a` Make sure to use [`a.card`](https://nim-lang.org/docs/system.html#card%2Cset%5BT%5D) instead of `len` for sets. I wish this would be changed to...

I'm so surprised this has never been done before, since it's so accessible but so in need of some sugar. This is, however, less a sql.js problem and more a...

It's not sequelize, but it might be useful anyway - I've just put out a 1.0 rc for a package I've been working on for a while that allows for...