User talk:Amartinezh

From Documentation
Revision as of 04:18, 19 April 2011 by Amartinezh (talk | contribs) (Created page with "== Última actualización == La versión final está en ZK Studio Essentials: DB Form Builder. == Introducción ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Última actualización

La versión final está en ZK Studio Essentials: DB Form Builder.


Introducción

Es común que las aplicaciones web operen con base de datos. A data provider serves as a bridge between an application and a data source. It is used to retrieve data from a data source, and if the data is changed by UI, data provider will sync the change back to the data source.

ZK aims to make things easier. Let ZK do the redundant routine needed for database. More than data provider, ZK tries to provide a wizard that can generate whole skeleton web application following MVC pattern, working with Spring and JPA.

At the very first stage, the wizard can help developer to generate management web page that is able to perform CRUD(Create, Read, Update, Delete)[1] operation on tables in database easily.

In this smalltalk, we will demo its usage step by step. (This feature is under development, this smalltalk is for demo only.)

  1. Create, Read, Update, Delete are the four basic functions of persistent storage.CRUD in wikipedia