Difference between revisions of "User talk:Amartinezh"

From Documentation
(Created page with "== Última actualización == La versión final está en ZK Studio Essentials: DB Form Builder. == Introducción ...")
 
Line 6: Line 6:
 
== Introducción ==
 
== 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.
+
Es común que las aplicaciones web operen con base de datos. Un proveedor de datos sirve de puente entre una aplicación y una fuente de datos (data source). Éste es usado para recuperar información de una fuente de datos, y si la información cambia en la interfaz gráfica (UI), el proveedor de datos deberá sincronizar los cambios nuevamente a la fuente de datos.
  
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.  
+
 
 +
ZK tiene como objetivo facilitar las cosas. Vamos a hacer la rutina ZK redundantes necesarios para la base de datos. 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)<ref>Create, Read, Update, Delete are the four basic functions of persistent storage.[http://en.wikipedia.org/wiki/Create,_read,_update_and_delete CRUD in wikipedia]</ref> operation on tables in database easily.
 
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)<ref>Create, Read, Update, Delete are the four basic functions of persistent storage.[http://en.wikipedia.org/wiki/Create,_read,_update_and_delete CRUD in wikipedia]</ref> operation on tables in database easily.
  
 
In this smalltalk, we will demo its usage step by step. <font color="red">(This feature is under development, this smalltalk is for demo only.)</font>
 
In this smalltalk, we will demo its usage step by step. <font color="red">(This feature is under development, this smalltalk is for demo only.)</font>

Revision as of 04:30, 19 April 2011

Ú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. Un proveedor de datos sirve de puente entre una aplicación y una fuente de datos (data source). Éste es usado para recuperar información de una fuente de datos, y si la información cambia en la interfaz gráfica (UI), el proveedor de datos deberá sincronizar los cambios nuevamente a la fuente de datos.


ZK tiene como objetivo facilitar las cosas. Vamos a hacer la rutina ZK redundantes necesarios para la base de datos. 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