Top "Crud" questions

The four basic operations for a data management system : Create, Read, Update, Delete

Getting out of CRUD

Definition: CRUD - Create, Read, Update, Delete; The four basic functions of persistent storage. In the context of this question, …

crud
Overriding Devise Registration Create Method

I want to specifically set a field when a user is created. I have class RegistrationsController < Devise::RegistrationsController def …

ruby-on-rails devise overriding crud
Good pattern or framework for adding auditing to an existing app?

I have an existing J2EE enterprise application to which I need to add auditing, i.e. be able to …

java jakarta-ee aop crud audit
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 …

android crud contactscontract contentobserver
How To Properly Unit-Test CRUD Operations on a Repository?

Realize this may sound like a broad question - so let me clarify. I have a Repository exposed via an …

c# unit-testing entity-framework repository crud
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 …

ruby-on-rails forms crud hidden-field
How to find by id in golang and mongodb

I need get values using ObjectIdHex and do update and also view the result. I'm using mongodb and golang.But …

mongodb go crud
Should there be a Transaction for Read Queries?

I've been reading that some devs/dbas recommend using transactions in all database calls, even read-only calls. While I understand …

sql-server transactions crud
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 …

php frameworks crud
What is the best way to add a "confirm-option" to a delete form in Symfony2?

If you create CRUD-code for an entity in Symfony2 using the console, you will end up with a very basic …

symfony controller crud confirm