Questions tagged as 'crud'

0
answers

Object Orientation in PHP, example crud with ajax [closed]

I'm trying to learn PHP Object Oriented, however I'm having trouble finding an example. Can someone show a simple example of the crud case below: A class in php, for example, user, in this class has methods that return the user by id. Al...
asked by 20.01.2017 / 12:43
1
answer

Crud with php ajax

I have a table that I want to customize and leave it a full crud, with delete, insert, update and delete multiple records, 1- I wanted to see if I could leave this table compatible with jquery 2.2.0 or a more advanced jquery because it only acce...
asked by 06.12.2016 / 18:15
3
answers

How to make a simple CRUD using Temp-table

I'm starting at Progress 4gl, and would like to learn how to make a simple customer registration or anything related to a CRUD. I would like to do using temp-tables. I have been researching and I have come to this, I am modifying but I have not...
asked by 27.09.2016 / 14:12
0
answers

function that returns the key field name of a query (tfdquery), Delphi XE8

I am preparing a CRUD in Delphi and need to do a function to find the key field ( KeyField ) of a particular record located in the query. The idea is to replace the 'id' field required by the Locate with this function and leave the dataset set u...
asked by 09.06.2016 / 00:26
1
answer

Catch data from 3 fragments

Good afternoon, I'm developing an android application and I have an activity with 3 fragments (tabs), where each one contains a part of a form and the last one I have a save button. My difficulty is in how to get the data from the 3 fragments th...
asked by 17.05.2016 / 20:07
1
answer

How to perform a CRUD in C # with MySQL and ADO [closed]

I need to do the relationship between tables 1: N and N: N. Table produto : public int id {get; set;} public string produto {get; set;} public list<tamanhos> tamanhos {get; set;} Table tamanhos : public int produto_id...
asked by 23.03.2016 / 04:39
1
answer

Persist object in CRUD JSF + CDI + JPA

I'm doing a simple CRUD using JSF, JPA and CDI. I have two screens: A screen with a datatable listing the data, on each line has the edit and delete button, at the beginning of the screen has an insert button, the edit and insert buttons...
asked by 19.01.2016 / 21:54
0
answers

How is the database of a WEB application created and configured? [closed]

How do I create and configure the database of a WEB application? Routines responsible for creating the database and CRUD in the application itself when it is first started on the server are implemented, or you must do this through DBMS its...
asked by 06.03.2016 / 04:04
0
answers

Bean Class not found - JavaWeb

Good evening, I'm doing my tcc on Java Web and doing data persistence with JPA and Hibernete. I made CRUD seemingly right, but when I click the register button it gives this error. action="#{empresaController.incluir()}": Target Unreachable, i...
asked by 03.04.2015 / 04:16
3
answers

Implementation of generic CRUD

I have the following class CRUD which is generic: public abstract class CRUD { protected string tabela = null; protected object classe = null; public CRUD() {} public virtual void insert() { //código } public virtu...
asked by 02.01.2015 / 19:41