Open GoogleCodeExporter opened 9 years ago
Original comment by sergey.s...@gmail.com
on 15 Apr 2013 at 1:08
Is there still developement going on with sqljet?
I've been investigating this problem and there seems to be error in
SqlJetBtreeDataTable function adjustRowIdPosition.
Changed
if (primaryKeyColumnNumber >= 0 && primaryKeyColumnNumber < row.length &&
row[primaryKeyColumnNumber] != null) {
to
if (primaryKeyColumnNumber >= 0 && primaryKeyColumnNumber < row.length) {
and there is no issue anymore. Is there some reason for null check? Does this
add other problems?
Original comment by ap.r...@gmail.com
on 18 Jun 2014 at 7:30
Thank you. I will look it more carefully.
Original comment by sergey.s...@gmail.com
on 18 Jun 2014 at 1:06
Original issue reported on code.google.com by
dmi...@gmail.com
on 15 Apr 2013 at 12:57