You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2017/10/12 09:20:28 UTC

svn commit: r1811925 - /jena/site/trunk/content/documentation/tdb2/tdb2_migration.md

Author: andy
Date: Thu Oct 12 09:20:28 2017
New Revision: 1811925

URL: http://svn.apache.org/viewvc?rev=1811925&view=rev
Log:
Migrate data, code

Modified:
    jena/site/trunk/content/documentation/tdb2/tdb2_migration.md

Modified: jena/site/trunk/content/documentation/tdb2/tdb2_migration.md
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/tdb2/tdb2_migration.md?rev=1811925&r1=1811924&r2=1811925&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/tdb2/tdb2_migration.md (original)
+++ jena/site/trunk/content/documentation/tdb2/tdb2_migration.md Thu Oct 12 09:20:28 2017
@@ -1,10 +1,16 @@
 Title: TDB2 - Migration from TDB1
 
+### Migrating Data
+
+TDB2 is not compatible with TDB1. Data must be reloaded from RDF again.
+
+### Migrating Code
+
 Simple migration of code is to use `TDB2Factory` in place of TDBFactory to create
 datasets. `DatasetGraph` objects are now created via `DatabaseMgr`.
 
 Beware that many classes have the same name in TDB1 and TDB2 but are in
-different packages. The API package for TDB2 is `org.apache.jena.tdb2`.
+different packages. The base package name for TDB2 is `org.apache.jena.tdb2`.
 
 Example code: **`TDB2Factory`**