Return-Path: X-Original-To: apmail-jena-commits-archive@www.apache.org Delivered-To: apmail-jena-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 981FE10270 for ; Fri, 23 Aug 2013 21:16:47 +0000 (UTC) Received: (qmail 30081 invoked by uid 500); 23 Aug 2013 21:16:47 -0000 Delivered-To: apmail-jena-commits-archive@jena.apache.org Received: (qmail 30058 invoked by uid 500); 23 Aug 2013 21:16:47 -0000 Mailing-List: contact commits-help@jena.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jena.apache.org Delivered-To: mailing list commits@jena.apache.org Received: (qmail 30051 invoked by uid 99); 23 Aug 2013 21:16:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Aug 2013 21:16:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Aug 2013 21:16:45 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A020723888E7 for ; Fri, 23 Aug 2013 21:16:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r875904 - in /websites/staging/jena/trunk/content: ./ documentation/jdbc/artifacts.html documentation/jdbc/drivers.html Date: Fri, 23 Aug 2013 21:16:25 -0000 To: commits@jena.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130823211625.A020723888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Fri Aug 23 21:16:25 2013 New Revision: 875904 Log: Staging update by buildbot for jena Added: websites/staging/jena/trunk/content/documentation/jdbc/artifacts.html Modified: websites/staging/jena/trunk/content/ (props changed) websites/staging/jena/trunk/content/documentation/jdbc/drivers.html Propchange: websites/staging/jena/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Fri Aug 23 21:16:25 2013 @@ -1 +1 @@ -1517032 +1517041 Added: websites/staging/jena/trunk/content/documentation/jdbc/artifacts.html ============================================================================== --- websites/staging/jena/trunk/content/documentation/jdbc/artifacts.html (added) +++ websites/staging/jena/trunk/content/documentation/jdbc/artifacts.html Fri Aug 23 21:16:25 2013 @@ -0,0 +1,180 @@ + + + + + + + + + Apache Jena - Maven Artifacts for Jena JDBC + + + + + + + + + + +
+
+
+

Maven Artifacts for Jena JDBC

+

The Jena JDBC libraries are a collection of maven artifacts which can be used individually +or together as desired. These are available from the same locations as any other Jena +artifact, see Using Jena with Maven for more information.

+

Core Library

+

The jena-jdbc-core artifact is the core library that contains much of the common implementation +for the drivers. This is a dependency of the other artifacts and will typically only be required +as a direct dependency if you are implementing a custom driver

+

+ org.apache.jena + jena-jdbc-core + x.y.z +

+

In-Memory Driver

+

The in-memory driver artifact provides the JDBC driver for non-persistent +in-memory datasets.

+
<dependency>
+  <groupId>org.apache.jena</groupId>
+  <artifactId>jena-jdbc-driver-mem</artifactId>
+  <version>x.y.z</version>
+</dependency>
+
+ + +

TDB Driver

+

The TDB driver artifact provides the JDBC driver for TDB +datasets.

+
<dependency>
+  <groupId>org.apache.jena</groupId>
+  <artifactId>jena-jdbc-driver-tdb</artifactId>
+  <version>x.y.z</version>
+</dependency>
+
+ + +

Remote Endpoint Driver

+

The Remote Endpoint driver artifact provides the JDBC driver for accessing +arbitrary remote SPARQL compliant stores.

+
<dependency>
+  <groupId>org.apache.jena</groupId>
+  <artifactId>jena-jdbc-driver-remote</artifactId>
+  <version>x.y.z</version>
+</dependency>
+
+ + +

Driver Bundle

+

The driver bundle artifact is a shaded JAR (i.e. with dependencies included) suitable for dropping into tools +to easily make Jena JDBC drivers available without having to do complex class path setups.

+

This artifact depends on all the other artifacts.

+
<dependency>
+  <groupId>org.apache.jena</groupId>
+  <artifactId>jena-jdbc-driver-bundle</artifactId>
+  <version>x.y.z</version>
+</dependency>
+
+
+
+ +
+ +
+
+

Copyright © 2011–2013 The Apache Software Foundation, Licensed under + the Apache License, Version 2.0. +

+

+ Apache Jena, Jena, the Apache Jena project logo, + Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +

+
+
+ + + + Modified: websites/staging/jena/trunk/content/documentation/jdbc/drivers.html ============================================================================== --- websites/staging/jena/trunk/content/documentation/jdbc/drivers.html (original) +++ websites/staging/jena/trunk/content/documentation/jdbc/drivers.html Fri Aug 23 21:16:25 2013 @@ -103,7 +103,7 @@

Jena JDBC Drivers

-

Jena JDBC comes with tree built in drivers by default with the option of building +

Jena JDBC comes with three built in drivers by default with the option of building custom drivers if desired. This page covers the differences between the provided drivers and the connection URL options for each.

Connection URL Basics

@@ -170,6 +170,8 @@ after the connection has been establishe
  • TDB
  • Remote Endpoint
  • +

    Each driver is available as a separate maven artifact, see the artifacts page +for more information.

    In-Memory

    The in-memory driver provides access to a non-persistent non-transactional in-memory dataset. This dataset may either be initially empty or may be initialized from an input file. Remember that