summaryrefslogtreecommitdiffstats
path: root/src/java/com/healthmarketscience/jackcess/Table.java
Commit message (Expand)AuthorAgeFilesLines
* Set overflow info in header row, not in last data row. (fixes #2919216)James Ahlborn2009-12-231-18/+23
* minor refactorJames Ahlborn2009-12-231-9/+12
* support reading/writing fixed length text columns (fixe #2886370)James Ahlborn2009-11-171-3/+2
* add some more tests/utility code for row updatesJames Ahlborn2009-11-171-0/+18
* initial update row supportJames Ahlborn2009-11-161-76/+244
* initial support for guid indexes and guid autonumbersJames Ahlborn2009-10-271-21/+16
* safer fixed offset handlingJames Ahlborn2009-05-291-1/+2
* Add ErrorHandler utility for customizing error handling during rowJames Ahlborn2008-11-081-39/+94
* Share out-of-line long value pages in order to generate more compact database...James Ahlborn2008-07-201-7/+23
* better account for memo space usageJames Ahlborn2008-07-181-0/+5
* Reserve minimum space for memo/ole fields so that greedy inline row usage doe...James Ahlborn2008-07-171-1/+11
* Reduce maximum row size to what Access considers valid.James Ahlborn2008-06-241-4/+2
* fix access compatibility issue with writing small rows, limit data pages to 2...James Ahlborn2008-04-161-2/+4
* add support for optionally enabling big index supportJames Ahlborn2008-04-071-3/+22
* refactor Index into abstract base class with SimpleIndex implementation to al...James Ahlborn2008-04-011-1/+2
* add ByteUtil.getUnsignedShortJames Ahlborn2008-03-311-2/+2
* redundant codeJames Ahlborn2008-03-241-1/+0
* Need to store auto-number values back into row so that indexes can beJames Ahlborn2008-03-241-23/+62
* allow for TempBufferHolder which does not maintain reference (cleans up addRows)James Ahlborn2008-03-211-14/+29
* minor cleanupsJames Ahlborn2008-03-191-3/+2
* clean up updating of the index uniqueEntryCountJames Ahlborn2008-03-181-6/+10
* completely fix problems with sporadic usage map corruption; add some soft buf...James Ahlborn2008-03-181-15/+37
* no need to use maxColCount and colNumber when storing row resultsJames Ahlborn2008-03-151-7/+7
* refactor some common code for encoding/decoding uncompressed stringsJames Ahlborn2008-03-151-20/+42
* fix creation of tables with auto-number columnsJames Ahlborn2008-03-141-1/+25
* add unit tests (and fix some bugs) for ignoreNull and unique index handlingJames Ahlborn2008-03-111-6/+10
* add convenience method for converting a rowMap to an array of row valuesJames Ahlborn2008-03-101-0/+15
* formalize code for reading unsigned bytesJames Ahlborn2008-03-091-6/+6
* Fix bug caused by sign extension when reading single-byte row numbers; fix so...James Ahlborn2008-03-071-3/+5
* More fixes for index parsing. Believe index names are now correctlyJames Ahlborn2008-03-061-25/+35
* cleanup variety of compiler warningsJames Ahlborn2008-03-031-14/+14
* update rowCount in common methodJames Ahlborn2008-02-211-5/+4
* test cursorbuilderJames Ahlborn2007-12-051-0/+13
* ditch builder-style methods on cursor impls, create CursorBuilder for simpler...James Ahlborn2007-12-031-1/+2
* implement range-based, index cursorsJames Ahlborn2007-12-021-3/+4
* implement and test index based cursorJames Ahlborn2007-11-281-1/+5
* rework Index cursor to match behavior of usagemap cursor and CursorJames Ahlborn2007-11-261-1/+1
* make usagemap cursor work similarly to Cursor; handle live additions and dele...James Ahlborn2007-11-261-44/+42
* further refactoring of table/cursor; initial iterator for index to allow for ...James Ahlborn2007-11-261-171/+297
* add some convenience methods for finding values in a tableJames Ahlborn2007-11-211-1/+1
* add reverse cursor traversalJames Ahlborn2007-11-211-8/+6
* Move table iteration out of Table and into Cursor. First stage inJames Ahlborn2007-11-201-162/+126
* work toward separating table iteration state from the Table classJames Ahlborn2007-11-191-42/+86
* change references between major data types; share common utility classes from...James Ahlborn2007-11-191-75/+88
* Update table row count correctly on row deletion or bulk row addition,James Ahlborn2007-11-171-15/+63
* Add experimental support for auto-number columns, feature requestJames Ahlborn2007-11-161-33/+56
* fix some pmd/findbugs issuesJames Ahlborn2007-11-031-22/+4
* add support for writing large table definitions; move table definition code i...James Ahlborn2007-07-131-6/+270
* rework inline usage map handling to handle out-of-range cases better and with...James Ahlborn2007-07-101-2/+4
* switch from Integer list to BitSet in UsageMapJames Ahlborn2007-07-091-9/+10