Tagged Questions
The four basic operations for a data management system : Create, Read, Update, Delete
19
votes
2answers
1k views
Is there a CRUD generator for Mongoose and Node.js and Underscore? Or a CRUD generator for a similar stack?
Is there a CRUD generator for Mongoose and Node.js and Underscore? Or a CRUD generator for a similar stack?
I want to generate something like this:
...
17
votes
2answers
7k views
Entity Framework 4 - AddObject vs Attach
I have been working with Entity Framework 4 recently, and am slightly confused as to when to use ObjectSet.Attach, and ObjectSet.AddObject.
From my understanding:
Use "Attach" when an Entity ...
17
votes
17answers
2k views
Getting out of CRUD
Definition:
CRUD - Create, Read, Update, Delete; The four basic functions of persistent storage. In the context of this question, specifically related to business applications.
I'll be honest, my ...
13
votes
2answers
2k views
To roo or not to roo
I would like to hear opinions about Spring Roo for CRUD applications.
I've been using Groovy on Grails up to now but for this new project we are
not allowed to use Grails anymore (we have a list of ...
13
votes
4answers
427 views
RESTful design, how to name pages outside CRUD et al?
I'm working on a site that has quite a few pages that fall outside my limited understanding of RESTful design, which is essentially:
Create, Read, Update, Delete, Show, List
Here's the question: ...
13
votes
8answers
7k views
Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applications
Where can I find examples of very well produced enterprise-y software that have:
Good, consistent use of keyboard shortcuts.
Good keyboard form navigation
Standarized form validation
Standarized use ...
12
votes
3answers
1k views
My ideal CMS. Does it exist, or isn't it a “CMS” anymore?
As a webdeveloper I have built several small and large websites with different teams, but always had to deliver a CMS to maintain content. In my experience with different CMSes, I have found them to ...
11
votes
7answers
1k views
PHP rapid skeleton generator for basic CRUD?
I have been tasked with building a simple web based system for managing a list of vehicles.
I am interested to know whether there are any robust, clean PHP 5 frameworks / libraries that are ...
9
votes
6answers
349 views
Which HTTP methods match up to which CRUD methods?
In RESTful style programming, we should use HTTP methods as our building blocks. I'm a little confused though which methods match up to the classic CRUD methods. GET/Read and DELETE/Delete are obvious ...
9
votes
6answers
3k views
A RESTful persistence solution usable with backbone.js… in PHP?
I'll preface this with saying that I'm a crappy programmer, I'm sure that what I want to do could be done in 10 lines of node or Rails or something else, but PHP is what I have available.
So, I'm ...
9
votes
4answers
395 views
I need an idea for a RESTful implementation of inventory API for an RPG game
I'm working on an kind of an RPG game. And I'm trying to figure out
a nice, clean and RESTful way to define inventory API.
inventory consists of several slots like head, chest etc (like in most RPG ...
9
votes
3answers
3k views
UI Design of WinForm CRUD App, What works?
I am designing a WinForms CRUD "like" app for a large group of Nurses and Social Workers to interact with Client information.
There are many different forms(about 30ish) that they need to ...
9
votes
17answers
10k views
Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?
Is there a CRUD generator utility in Java like Scaffolding in Rails? Can be in any framework or even plain servlets. Must generate controllers + views in jsp, not just DAO code...
8
votes
3answers
430 views
Database to CRUD application, Rails 3
I have a fairly large DB schema and about 100M rows with I would like to expose to the web, using Rails 3. By exposing to the web, I mean the following:
A REST api (json & xml)
Views to present ...
7
votes
2answers
577 views
Using the Rally Rest API for CRUD operations
At my company, we recently started using Rally for our project management tool. Initially, someone external to our team invested a lot of time manually creating iterations using a naming convention ...
7
votes
6answers
2k views
Rails Alternative to The Django admin panel / CRUD View Generator?
I am currently trying to decide between Rails and Django..
At the moment the I'm finding ruby much more elegant so my only reason for considering Django is the admin panel..
I have no experience of ...
7
votes
3answers
3k views
Recommended JSF 2.0 CRUD frameworks
Can somebody recommend any framework to facilitate CRUD development in JSF 2.0?
Aspects I value most:
As lightweight as possible; limited dependencies on third party libraries
Support for an ...
7
votes
2answers
787 views
What are the best practices for functional programming and database interaction?
I know that in pure object-oriented languages like Java it usually makes sense to use ORMs like Hibernate. But what would I do when writing a CRUD-type functionality in Clojure or Common LISP?
...
6
votes
2answers
557 views
Is it possible to configure the Play Framework's CRUD module to respect @Column(unique=true) annotations?
I'm using Play's CRUD module to create a simple set of admin screens. One of my models is User and I want to enforce a unique constraint on the email field.
The code looks like this:
public class ...
6
votes
1answer
101 views
Removing content from database, security precautions
UPDATE:
I added the CSRF protection like Berdir told me, with the help of the link below to make my application work again. However.. I'm not quite sure what I did right now :D How is this going to ...
6
votes
3answers
583 views
Why are CRUD operations so bad in a SOA design?
I have just finished reading an article on MSDN by John Evdemon. He bashes the CRUD interfaces and calls it an anti-pattern.
While I agree that having ANYTHING stateful is difficult and Current and ...
6
votes
2answers
243 views
Streamline and make form/crud operations more efficient in web applications?
When looking back at last weeks work (identical to many others), I've found myself spending the major part of my time putting together forms of which POST-data are used to perform database CRUD ...
6
votes
5answers
1k views
Does Google app engine supports JDBC?
I have heard the Google App Engine[java] do not support JDBC and Hibernate. Is it true?
If yes then how do we access the database in Google App Engine.
Also, is there any [basic] sample application ...
6
votes
5answers
4k views
ORM on android SQLite and database scheme
I'm looking for a very simple ORM framework working on Android for sqlite. I've been testing activeAndroid but none of the example could ever build on Eclipse. By the way, how do guys implements a ...
6
votes
8answers
4k views
Easiest Form validation library for PHP?
I need a simple php library which can be used to easily pass rules and field names to, and then validation could be easily performed. There should also be an easy way to retrieve the errors.
Any ...
6
votes
12answers
733 views
CRUD vs AGUD vs AFUD…what's your naming convention of preference [closed]
Do you write createSomething() or addSomething()?
Do you write readSomething(), getSomething() or fetchSomething()?
This is totally a petty gripe. In the meeting room we refer to it as CRUD, but in ...
6
votes
3answers
3k views
Generate CRUD UI (Swing)
I am looking for a tool/framework to (automatically) generate a Swing user interface to perform CRUD operations on an underlying database.
I would also like to configure the database fields that ...
5
votes
2answers
172 views
How complex should models be?
When implementing models using the MVC pattern, how complex should my models be?
Let's say I have got a few tables like so:
User (id, password, created ...)
Emails(user_id, email ...)
Addresses ...
5
votes
3answers
5k views
Single DAO & generic CRUD methods (JPA/Hibernate + Spring)
Following my previous question, DAO and Service layers (JPA/Hibernate + Spring), I decided to use just a single DAO for my data layer (at least at the beginning) in an application using JPA/Hibernate, ...
5
votes
1answer
387 views
What's the fastest way to get CRUD over CGI on a database handle in Perl?
TL;DR: Want to write CGI::CRUD::Simple (a minimalist interface module for CGI::CRUD), but I want to check first if i overlooked a module that already does that.
I usually work with applications that ...
5
votes
2answers
965 views
Is there a Drupal module for Forms with powerful CRUD style behaviour?
We are building a website that contains a large number of database tables that need to be edited by the CMS administrator.
Some of the tables are fed by form submissions from users on the front end of ...
5
votes
5answers
2k views
jQuery CRUD in ASP.NET MVC
Seeing as though our team maintain an Intranet which has clients users guaranteed to have javascript enabled we know that we can step in and start using jQuery more "thoroughly". Our system is very ...
5
votes
1answer
1k views
Syncing a Core Data Model With A Web Service
This problem has been kicking my butt for a few days now.
I have a web service that serves XML that looks like this:
<levels>
<level>Level 1</level>
<level>Level ...
5
votes
4answers
1k views
What is scaffolding? Is it a term for a particular platform?
Scaffolding, what is it? Is it a Rails-only thing?
5
votes
7answers
9k views
Common CRUD functions in PHP
Is there a simple way to write a common function for each of the CRUD (create, retreive, update, delete) operations in php WITHOUT using any framework. For example I wish to have a single create ...
4
votes
6answers
299 views
Simple CRUD Generation
This is what I have:
An entity-relational schema, modelled for Doctrine 2.0 (in PHP);
The generated database, on a MySQL server.
This is what I want:
A very basic CRUD web-interface to the ...
4
votes
2answers
328 views
Importing CRUD module in Play! 1.2.3
When I import the CRUD module using the dependencies.yml like so:
require:
- play
- play -> crud
- play -> secure
I get a Compilation error: CRUD can't be resolved to a type.
But ...
4
votes
1answer
517 views
How to create a nested GridView to edit EF Code First relation?
I've got a classic Parent-Child relation that I would like to CRUD by using asp:GridView controls. To CRUD the parent is easy, but the challenge is to nest a asp:GridView within a asp:GridView that is ...
4
votes
2answers
1k views
How do I make my Android ContentObserver for ContactsContract detect a added, updated or deleted contact?
I am able to get a generic notification "that there was a change to the contacts DB", but I want to know the specific record that was inserted, updated, or deleted. Following is the code that gets ...
4
votes
1answer
998 views
Rails - Update a single attribute : link with custom action or form with hidden fields?
Let's say I have a User model, with a facebook_uid field corresponding to the user's facebook id.
I want to allow the user to unlink his facebook account. Do do so, I need to set this attribute to ...
4
votes
3answers
410 views
what are the fastest java tools to generate CRUD screens from a DB schema?
I am constantly in search of better and faster java tools to prototype webapps. I generally start with a good data model on the backend, and work towards the screens. What are some good tools that I ...
4
votes
1answer
929 views
is there a good PHP CRUD code generator?
Is there any better PHP CRUD code generator?
I want to get Data Access Object, Business Object and Value Object.
It would be difficult to match my needs, but I am happy at least I can get any relevant ...
4
votes
4answers
261 views
Editing tables with ASP.Net - Quick 'n Dirty
I have need to provide a way for users to edit tables in ASP.Net. The tables are simple (no master/detail relationships), but there are likely to be a lot of them. What's the quickest/simplest way ...
4
votes
3answers
615 views
given a database, how do you generate CRUD forms for Java EE?
given a database schemas, is it possible to automatically generate forms for crud operations on the tables?
4
votes
1answer
1k views
WCF SOA: CRUD Data Access Service…why bother (or is our design wrong)?
We have a Data Access service in our SOA WCF system. This service is responsible for doing CRUD (create, update, delete) operations on "system wide" database tables, and is also the source of this ...
4
votes
3answers
180 views
How to structure a 'flippable' app?
How feasible is it(and some guidance) to build a WPF(Silverlight) app in such a way that it can be flipped back and forth from Web to Desktop?
Maybe some context is in order.
I am a lone ...
4
votes
2answers
780 views
Is my ASP.NET MVC application structured properly?
I've been going through the tutorials (specifically ones using Linq-To-Entities) and I understand the basic concepts, however some things are giving me issues.
The tutorials usually involve only ...
4
votes
2answers
2k views
Django: The best practice to implement CRUD outside the contrib.admin
I'm currently developing a Blog project using Post model, which will be used by multiple authors.
I want to make an admin/control-panel interface where each author of the Post can view the Post list ...
4
votes
5answers
3k views
Jumping into N-Tier architecture with WCF?
I work for a large state government agency that is a tad behind the times. Our skill sets are outdated and budgetary freezes prevent any training or hiring of new employees/consultants (firing people ...
4
votes
2answers
1k views
Alternatives to grids in CRUD applications?
So you were assigned to build a basic CRUD application. And it has this one page that serves to list all of the inventory items... if your user wants to edit any of them, there's the "Edit" button ...