Updated Branches: refs/heads/master 9799e6b5a -> e0da44360
Forgot to gen docs. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/2005c9e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/2005c9e3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/2005c9e3 Branch: refs/heads/master Commit: 2005c9e3f85634e08930ea1c11228de7d81cb949 Parents: 2d8055e Author: Aaron McCurry <[email protected]> Authored: Tue Aug 27 16:38:59 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Aug 27 16:38:59 2013 -0400 ---------------------------------------------------------------------- docs/using-blur.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/2005c9e3/docs/using-blur.html ---------------------------------------------------------------------- diff --git a/docs/using-blur.html b/docs/using-blur.html index 02fd69f..738470b 100644 --- a/docs/using-blur.html +++ b/docs/using-blur.html @@ -472,7 +472,24 @@ default text files. <div class="page-header"> <h1 id="jdbc">JDBC</h1> </div> - <p>TODO</p> + <p> +The JDBC driver is very experimental and is currently read-only. It has a very basic SQL-ish +language that should allow for most Blur queries. + +Basic SQL syntax will work for example:<br/> +<pre><code class="bash">select * from testtable where fam1.col1 = 'val1'</code></pre> + +You may also use Lucene syntax by wrapping the Lucene query in a "query()" function:<br/> +<pre><code class="bash">select * from testtable where query(fam1.col1:val?)</code></pre> + +Here is a screenshot of the JDBC driver in SQuirrel: + +<img src="resources/img/SQuirrel.png"> +<br/> +<br/> +<br/> +<br/> +</p> </section> </div> </div>
