Return-Path: X-Original-To: apmail-zest-commits-archive@minotaur.apache.org Delivered-To: apmail-zest-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CDD3D18D82 for ; Wed, 8 Jul 2015 11:09:38 +0000 (UTC) Received: (qmail 84228 invoked by uid 500); 8 Jul 2015 11:09:38 -0000 Delivered-To: apmail-zest-commits-archive@zest.apache.org Received: (qmail 84163 invoked by uid 500); 8 Jul 2015 11:09:38 -0000 Mailing-List: contact commits-help@zest.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zest.apache.org Delivered-To: mailing list commits@zest.apache.org Received: (qmail 83856 invoked by uid 99); 8 Jul 2015 11:09:37 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2015 11:09:37 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id A2307AC0A26 for ; Wed, 8 Jul 2015 11:09:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1689843 [44/48] - in /zest/site: content/java/develop/ content/java/develop/images/ content/java/develop/javadocs/ content/java/develop/javadocs/org/qi4j/api/ content/java/develop/javadocs/org/qi4j/api/activation/ content/java/develop/java... Date: Wed, 08 Jul 2015 11:08:57 -0000 To: commits@zest.apache.org From: paulmerlin@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150708110937.A2307AC0A26@hades.apache.org> Modified: zest/site/content/java/develop/sample-sql-support.html URL: http://svn.apache.org/viewvc/zest/site/content/java/develop/sample-sql-support.html?rev=1689843&r1=1689842&r2=1689843&view=diff ============================================================================== --- zest/site/content/java/develop/sample-sql-support.html (original) +++ zest/site/content/java/develop/sample-sql-support.html Wed Jul 8 11:08:41 2015 @@ -66,7 +66,7 @@ })(); -

SQL Support Sample

Note

This sample use PostgreSQL and drop all of its data once run in order to be runnable multiple times.

Sample of how to fully use Qi4j SQL support : SQL Library, SQL EntityStore and SQL Index/Query.

Browse Source

Here are the steps needed to setup the database using the psql utility command:

user@host $ psql postgres
+  

SQL Support Sample

Note

This sample use PostgreSQL and drop all of its data once run in order to be runnable multiple times.

Sample of how to fully use Zest™ SQL support : SQL Library, SQL EntityStore and SQL Index/Query.

Browse Source

Here are the steps needed to setup the database using the psql utility command:

user@host $ psql postgres
 postgres=# CREATE USER jdbc_test_login WITH PASSWORD 'password';
 CREATE ROLE
 postgres=# CREATE DATABASE jdbc_test_db;

Modified: zest/site/content/java/develop/sample-swing.html
URL: http://svn.apache.org/viewvc/zest/site/content/java/develop/sample-swing.html?rev=1689843&r1=1689842&r2=1689843&view=diff
==============================================================================
--- zest/site/content/java/develop/sample-swing.html (original)
+++ zest/site/content/java/develop/sample-swing.html Wed Jul  8 11:08:41 2015
@@ -66,7 +66,7 @@
   })();
  
 
-  

Swing Bindings Sample

Sample of ho w to write custom binders.

Browse Source