Navneet Gupta

Results 5 comments of Navneet Gupta

@JinHo-C Replacing `Error` with `Swift.Error` in your code to avoid the conflict with `KituraNet.Error` should fix the problem.

I agree it's probably a better design decision to name things so they don't conflict with the standard library. However, if another library defines an enum or class called Error...

@irar2 I think the primary real-life use-case for this is for multi row inserts. Like you noted, we currently have that, but not with prepared statements for users who need...

@shmuelk mentioned you were thinking about making Kuery functions throw instead of returning QueryResult.error(). IMO, that would be better. (I just saw that you also mentioned this a possibility above)...

This would be useful for applications that work on large tables (say a million records) and need to process them in small batches (say 1000 at a time), so as...