From: James Ahlborn
Date: Fri, 9 Sep 2016 12:37:38 +0000 (+0000)
Subject: update docs for new metadata update support
X-Git-Tag: jackcess-2.1.5~5
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=09a70b9f2465c39852784eb1b03049ed73512867;p=jackcess.git
update docs for new metadata update support
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1033 f203690c-595d-4dc9-a70b-905162fa7fd2
---
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 25c8189..c37c887 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -9,6 +9,16 @@
Change multi-value complex columns so that they return all relevant
column properties.
+
+ Add some initial support for Table metadata modification. Columns and
+ Indexes can now be added to an existing table (using
+ ColumnBuilder.addToTable and IndexBuilder.addToTable respectively).
+
+
+ Add the ability to create Relationships using RelationshipBuilder.
+ With this support finally brings the ability to create foreign key
+ indexes (aka integrity enforcement in Relationships).
+
diff --git a/src/site/xdoc/cookbook.xml b/src/site/xdoc/cookbook.xml
index 5d51225..4ad5649 100644
--- a/src/site/xdoc/cookbook.xml
+++ b/src/site/xdoc/cookbook.xml
@@ -192,19 +192,19 @@
is possible may be out of date).
- As of version 2.1.0, Jackcess supports:
+ As of version 2.1.5, Jackcess supports:
- Creating databases for Access all versions 2000-2013
- Creating columns for all simple data types
- Creating tables with single-table Indexes
+ - Creating tables with (index backed) foreign-key constraints
+ (i.e. relationships with integrity enforcement enabled)
Some notable gaps:
- - Cannot currently create tables with (index backed) foreign-key
- constraints
- Cannot currently create tables with "complex" columns
(attachment, multi-value, versioned memo)