fmwviormv / sqlite-net

Automatically exported from code.google.com/p/sqlite-net
0 stars 0 forks source link

Skip() not working #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
in SQLite.cs, line 1111:

cmdText += " offset " + _limit.Value;

should be:

cmdText += " offset " + _offset.Value;

Original issue reported on code.google.com by roman...@gmail.com on 16 Sep 2010 at 4:10

GoogleCodeExporter commented 9 years ago
Fixed in R65 and regression test added. Thanks for spotting this.

Original comment by frank.al...@gmail.com on 13 Nov 2010 at 11:08