You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2014/05/07 10:54:10 UTC

svn commit: r1592949 - /olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext

Author: chrisam
Date: Wed May  7 08:54:10 2014
New Revision: 1592949

URL: http://svn.apache.org/r1592949
Log:
Make available on website

Modified:
    olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext

Modified: olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext?rev=1592949&r1=1592948&r2=1592949&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext (original)
+++ olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_AdvancedRead_FilterVisitor.mdtext Wed May  7 08:54:10 2014
@@ -20,7 +20,7 @@ Notice:    Licensed to the Apache Softwa
 
 
 ### How To Guide for implementing a filter tree transformation into a JDBC where clause
-The query option $filter can be used to apply a filter query to the result set. This tutorial will be about consuming and working with the filter tree which an application will get from the OData Java library by implementing a transformation of the filter expression into a JDBC where clause. The example explained here will be kept simple to show the mechanism of the visitor pattern. Security problem which occur when using user input (e.g. the filter string of the URI) inside a where clause will be pointed out but not solved for this tutorial. Knowledge about the visitor pattern is not necessary but helpful. If you want to read further please refer to the further information chapter at the end of this tutorial. All examples can be found as java sources here.
+The query option $filter can be used to apply a filter query to the result set. This tutorial will be about consuming and working with the filter tree which an application will get from the OData Java library by implementing a transformation of the filter expression into a JDBC where clause. The example explained here will be kept simple to show the mechanism of the visitor pattern. Security problem which occur when using user input (e.g. the filter string of the URI) inside a where clause will be pointed out but not solved for this tutorial. Knowledge about the visitor pattern is not necessary but helpful. If you want to read further please refer to the further information chapter at the end of this tutorial. All examples can be found as java sources here: [test.jdbc.zip][1]
 
 ### Examples
 ##### Simple example
@@ -381,3 +381,5 @@ Documentation about how to create such a
 
 Visitor pattern: [http://en.wikipedia.org/wiki/Visitor_pattern](http://en.wikipedia.org/wiki/Visitor_pattern "External Link")
 
+
+  [1]: http://olingo.apache.org/resources/test.jdbc.zip
\ No newline at end of file