summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* add support for writing large table definitions; move table definition code ↵James Ahlborn2007-07-132-5/+41
| | | | | | into Table (out of Database) git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@159 f203690c-595d-4dc9-a70b-905162fa7fd2
* add flush method to Database; add unit test for new usage map functionalityJames Ahlborn2007-07-102-0/+27
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@157 f203690c-595d-4dc9-a70b-905162fa7fd2
* handle reading/writing numeric values which thing that they are fixed length ↵James Ahlborn2007-06-052-0/+52
| | | | | | fields (fix #1672071) git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@148 f203690c-595d-4dc9-a70b-905162fa7fd2
* when writing table definition, set things up so long variable length columns ↵James Ahlborn2007-05-082-0/+40
| | | | | | are written after normal variable length columns. this makes it more likely that all the data can be written sucessfully because long var columns can be written in separate data pages (fix bug [1675522]); tweak row writing to account for deleted columns git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@143 f203690c-595d-4dc9-a70b-905162fa7fd2
* add unit test for new copyTable behaviorJames Ahlborn2006-11-132-7/+122
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@136 f203690c-595d-4dc9-a70b-905162fa7fd2
* implement multi-page long value writingJames Ahlborn2006-10-022-4/+53
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@127 f203690c-595d-4dc9-a70b-905162fa7fd2
* read index entries on demandJames Ahlborn2006-09-261-1/+3
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@126 f203690c-595d-4dc9-a70b-905162fa7fd2
* support reading 'compressed' indexes (fix 1563654)James Ahlborn2006-09-263-30/+50
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@124 f203690c-595d-4dc9-a70b-905162fa7fd2
* fix ordering of byte code comparatorJames Ahlborn2006-09-231-0/+96
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@120 f203690c-595d-4dc9-a70b-905162fa7fd2
* make byte[] printable when dumping tableJames Ahlborn2006-09-211-1/+12
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@118 f203690c-595d-4dc9-a70b-905162fa7fd2
* add ability to dump to writerJames Ahlborn2006-09-211-5/+19
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@117 f203690c-595d-4dc9-a70b-905162fa7fd2
* rework current row page tracking with RowStateJames Ahlborn2006-09-141-15/+16
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@109 f203690c-595d-4dc9-a70b-905162fa7fd2
* implement overflow row readingJames Ahlborn2006-09-132-0/+28
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@108 f203690c-595d-4dc9-a70b-905162fa7fd2
* refactor index entries to allow for fixing textual entries (not finished yet)James Ahlborn2006-09-131-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@107 f203690c-595d-4dc9-a70b-905162fa7fd2
* clean up lots of cruft around datatypes; add more sanity checking on table ↵James Ahlborn2006-09-082-4/+90
| | | | | | creation; fix free space calculations git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@105 f203690c-595d-4dc9-a70b-905162fa7fd2
* make database and table iterable; slight rearrangement of logic in getNextRowJames Ahlborn2006-08-041-8/+4
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@92 f203690c-595d-4dc9-a70b-905162fa7fd2
* add table debug methodsJames Ahlborn2006-08-041-0/+17
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@89 f203690c-595d-4dc9-a70b-905162fa7fd2
* add unit test for multi-page table defsJames Ahlborn2006-08-042-1/+7
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@87 f203690c-595d-4dc9-a70b-905162fa7fd2
* clean up reading/writing 3-byte ints; long value length is 3-bytes (fix bug ↵James Ahlborn2006-07-311-1/+1
| | | | | | 1449812) git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@79 f203690c-595d-4dc9-a70b-905162fa7fd2
* handle more tables with more idnex slots than actual indexes (fix bug 1530312)James Ahlborn2006-07-302-0/+17
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@78 f203690c-595d-4dc9-a70b-905162fa7fd2
* fix compressed text handling; wrap arithmetic exceptions with ioexceptionsJames Ahlborn2006-07-261-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@74 f203690c-595d-4dc9-a70b-905162fa7fd2
* add write support for numeric/guidJames Ahlborn2006-07-251-2/+98
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@69 f203690c-595d-4dc9-a70b-905162fa7fd2
* add currency supportJames Ahlborn2006-07-251-0/+40
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@68 f203690c-595d-4dc9-a70b-905162fa7fd2
* first attempt at reading with deleted columnsJames Ahlborn2006-07-242-0/+29
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@67 f203690c-595d-4dc9-a70b-905162fa7fd2
* add index primary key info; possibly fix some bugs around reading indexes ↵James Ahlborn2006-07-242-0/+15
| | | | | | (or possibly introduce) git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@66 f203690c-595d-4dc9-a70b-905162fa7fd2
* more fixes for writing MEMO/OLEJames Ahlborn2006-06-151-5/+31
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@56 f203690c-595d-4dc9-a70b-905162fa7fd2
* added tests for reading memos and missing filesJames Ahlborn2006-06-132-0/+24
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@55 f203690c-595d-4dc9-a70b-905162fa7fd2
* Readded as binaryTim McCune2006-05-262-0/+0
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@43 f203690c-595d-4dc9-a70b-905162fa7fd2
* Deleting to readd as binaryTim McCune2006-05-262-0/+0
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@42 f203690c-595d-4dc9-a70b-905162fa7fd2
* Added ability to delete current row.Tim McCune2005-08-301-19/+53
| | | | | | | Fixed bug where adding a new row to a table whose last row had been deleted failed. git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@29 f203690c-595d-4dc9-a70b-905162fa7fd2
* Fixed bug 1273712 where writing null values into fixed-length columns wasn't ↵Tim McCune2005-08-261-2/+2
| | | | | | working. git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@25 f203690c-595d-4dc9-a70b-905162fa7fd2
* Added handling of deleted rows.Tim McCune2005-08-122-0/+9
| | | | | | | Fixed a couple bugs introduced by the 1.5 upgrade. git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@19 f203690c-595d-4dc9-a70b-905162fa7fd2
* JDK 1.5 upgradesTim McCune2005-04-092-34/+26
| | | | git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@7 f203690c-595d-4dc9-a70b-905162fa7fd2
* This commit was generated by cvs2svn to compensate for changes in r2,Tim McCune2005-04-076-0/+303
which included commits to RCS files with non-trunk default branches. git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@3 f203690c-595d-4dc9-a70b-905162fa7fd2