You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2013/08/23 23:18:30 UTC

svn commit: r1517043 - /jena/site/trunk/content/documentation/jdbc/index.mdtext

Author: rvesse
Date: Fri Aug 23 21:18:30 2013
New Revision: 1517043

URL: http://svn.apache.org/r1517043
Log:
Minor formatting fixes

Modified:
    jena/site/trunk/content/documentation/jdbc/index.mdtext

Modified: jena/site/trunk/content/documentation/jdbc/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/jdbc/index.mdtext?rev=1517043&r1=1517042&r2=1517043&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/jdbc/index.mdtext (original)
+++ jena/site/trunk/content/documentation/jdbc/index.mdtext Fri Aug 23 21:18:30 2013
@@ -88,12 +88,12 @@ changing the connection URL appropriatel
 Firstly we should ensure that the driver we wish to use is registered with the JDBC driver manager, a static
 method is provided for this:
 
-   MemDriver.register();
+    MemDriver.register();
 
 Once this is done we can then make a JDBC connection just be providing an appropriate connection URL:
 
-   // Make a connection using the In-Memory driver starting from an empty dataset
-   Connection conn = DriverManager.getConnection("jdbc:jena:men:empty=true");
+    // Make a connection using the In-Memory driver starting from an empty dataset
+    Connection conn = DriverManager.getConnection("jdbc:jena:men:empty=true");
 
 Now we can go ahead and use the connection as you would normally.