Przeglądaj źródła

Fix issue with reading Access 97 database with large number of fields

git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@575 f203690c-595d-4dc9-a70b-905162fa7fd2
tags/jackcess-1.2.6
James Ahlborn 12 lat temu
rodzic
commit
1eda5c96a8

+ 3
- 0
src/changes/changes.xml Wyświetl plik

@@ -22,6 +22,9 @@
Add Database.getSystemTableNames to enable retrieving the list of
system/hidden tables.
</action>
<action dev="jahlborn" type="fix">
Fix issue with reading Access 97 database with large number of fields.
</action>
</release>
<release version="1.2.4" date="2011-05-14">
<action dev="jahlborn" type="update">

+ 1
- 1
src/java/com/healthmarketscience/jackcess/Table.java Wyświetl plik

@@ -759,7 +759,7 @@ public class Table
int jumpsUsed = 0;
for(int i = 0; i < numVarCols + 1; i++) {

if((jumpsUsed < numJumps) &&
while((jumpsUsed < numJumps) &&
(i == ByteUtil.getUnsignedByte(
rowBuffer, rowEnd - nullMaskSize-jumpsUsed - 1))) {
jumpsUsed++;

Ładowanie…
Anuluj
Zapisz