Ira Rosen

Results 15 comments of Ira Rosen

Here is what we are planning to implement in order to enable the proposed Sequence API: Replace `QueryResult.rows(titles: [String], rows: [[Any?]])` with `QueryResult.resultSet(resultSet: ResultSet)` and replace `QueryResult.asRows` with ```swift ///...

What should happen if we get an error in a middle of a sequence, i.e. we fetched some rows, and then something goes wrong. If we just return nil, it's...

@groue Thank you, your Cursor works great and solves our problem of not being able to throw an error with Sequence. We'd love to see you creating a PR against...

@groue I didn't mean to ask you to fix our plugins. We just need your Cursor.swift to be in Swift-Kuery. The easiest way for us would be if you could...

Hi @naithar, Yes, by injection points I meant Position, and in my opinion Position is not flexible enough, it defines 5 points (for Select), and we prefer something more universal....

We can return an array of QueryResult for these functions, i.e. for example: ```swift func execute(_ raw: String, parametersArray: [[String: Any?]], onCompletion: @escaping (([QueryResult]) -> ())) ```

Since we work asynchronously, there is a problem with running one query after another without waiting for the results of the previous query being read completely. We probably need a...

OK, we can do this. @shmuelk proposed to use `numberOfAffectedRows` instead of `affectedRows`, `titles` instead of `columnNames` (because these don't have to be table columns), and `rowSequence` instead of `resultSet`.

I am sorry, I don't understand what you are trying to do here. The `update` method updates the user profile with the data received from the authentication provider. Do you...