CRUD vs AGUD vs AFUD...what's your naming convention of preference - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:32:00Zhttp://stackoverflow.com/feeds/question/360321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference3CRUD vs AGUD vs AFUD...what's your naming convention of preferencegeekinger2008-12-11T18:12:57Z2009-05-15T03:28:54Z
<p>Do you write <code>createSomething()</code> or <code>addSomething()</code>?</p>
<p>Do you write <code>readSomething()</code>, <code>getSomething()</code> or <code>fetchSomething()</code>?</p>
<p>This is totally a petty gripe. In the meeting room we refer to it as CRUD, but in actual code, it's becoming AGUD.</p>
<p>What's your naming convention of preference? Does it matter?</p>
<p>thnx.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/360343#3603432Answer by Macka for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceMacka2008-12-11T18:19:28Z2008-12-11T18:19:28Z<p>I think it depends on the context of the problem/technology - CREATE and ADD can be different. </p>
<p>For example I may CREATE a tag.</p>
<p>And then I may ADD that tag to a page.</p>
<p>We use Repositories to manage our data-access and according to Eric Evans in his <a href="http://books.google.co.uk/books?id=7dlaMs0SECsC&dq=domain+driven+design&pg=PP1&ots=ulAXXY_cv4&source=bn&sig=8XAWjS01zPeAhz-BbtMOk1TCqCY&hl=en&sa=X&oi=book_result&resnum=4&ct=result" rel="nofollow">Domain Driven Design</a> book you should Add & Remove objects to a repository as if it's an in-memory collection - even if behind the scenes it is using a DB.</p>
<p>But in answer to the original question I still talk about CRUD cos I'm an SQL fanboy at heart! :)</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/360345#3603450Answer by JeeBee for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceJeeBee2008-12-11T18:20:45Z2008-12-11T18:20:45Z<p>I think this is fairly common. Our DAOs certainly are of the Add, Get, Update, Delete (set status to 'C'ancelled, etc) method names. At the DB level they're Inserts, Selects, Updates and Deletes - ISUD.</p>
<p>It could be Persist, Fetch, Delete. Persist either Adding or Updating as necessary.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/360379#3603790Answer by James Curran for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceJames Curran2008-12-11T18:29:47Z2008-12-11T18:29:47Z<p>Usually, "Get" for the high-level -- get it from wherever: cache, disk, configuration.
"Retrieve" gets the value from persistent storage -- normally called by the "Get" if it's not in the cache.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/360395#3603950Answer by Darron for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceDarron2008-12-11T18:36:02Z2008-12-11T18:36:02Z<p>I Create something, and then add it to something else. The add can be part of the create, or sometimes an Update to the containing object.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/360760#3607600Answer by monzee for CRUD vs AGUD vs AFUD...what's your naming convention of preferencemonzee2008-12-11T20:24:41Z2008-12-11T20:24:41Z<p>BREAD - browse, read, edit, add, delete.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/364811#3648113Answer by Phil Laliberte for CRUD vs AGUD vs AFUD...what's your naming convention of preferencePhil Laliberte2008-12-13T04:07:03Z2008-12-13T20:06:36Z<p>I prefer <strong>CRUD</strong> over <strong>AGUD</strong> and <strong>AFUD</strong>.</p>
<p><hr /></p>
<p><strong>CREATE</strong> Vs <strong>ADD</strong></p>
<p>We are trying to use both of these words to indicate that we are building something new. <strong>CREATE</strong> leaves no room for interpretation; something that didnt exist before is now being built. <strong>ADD</strong> can be a little confusing because it could imply that we are adding something that already exists.</p>
<p><hr /></p>
<p><strong>READ</strong> Vs. <strong>GET</strong>/<strong>FETCH</strong></p>
<p>To me the problem with <strong>GET</strong> and <strong>FETCH</strong> here could be interprated as getting a sole instance of an object in order to modify it. I like using <strong>READ</strong> because it is clear in the sense that I want to read in an instance of an object and that modifying the modifying the object would require a seperate action.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/364843#3648430Answer by Nathan Strong for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceNathan Strong2008-12-13T04:35:21Z2008-12-13T04:35:21Z<p>CRUD works better as an acronym. In practice, I generally use IACREUD:</p>
<ul>
<li><strong>Index</strong> lists the elements available for editing; also displays the delete form.</li>
<li><strong>Add</strong> is the view used to display the form for adding content;</li>
<li><strong>Create</strong> is the backend code that handles the Add form;</li>
<li><strong>Retrieve</strong> is the only view used in the frontend application;</li>
<li><strong>Edit</strong> is the view used to display the form for editing existing content;</li>
<li><strong>Update</strong> is the backend code that handles the Edit form;</li>
<li><strong>Delete</strong> is the backend code that handles the Delete form.</li>
</ul>
<p>I can't really think of a good acronym for that..</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/364849#3648490Answer by Ant P for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceAnt P2008-12-13T04:39:29Z2008-12-13T04:39:29Z<p>I try to use more specific verbs when I can think of appropriate ones (which is pretty hard at 4am). For most things add/edit/delete/get are good enough, and short enough.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/852858#8528580Answer by markblue777 for CRUD vs AGUD vs AFUD...what's your naming convention of preferencemarkblue7772009-05-12T13:40:27Z2009-05-12T13:40:27Z<p>At the end of the day it is up to you as a person and it is what you are happy with in your project. i usually use Get, Add, Search or something similar to that.
Regards
Mark</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/858673#858673-1Answer by Devtron for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceDevtron2009-05-13T15:34:18Z2009-05-13T15:34:18Z<p>it depends on the company's preference and standards. it's not up to me usually, and that is okay with me. a good programmer is flexible.</p>
http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference/866853#8668530Answer by Typeoneerror for CRUD vs AGUD vs AFUD...what's your naming convention of preferenceTypeoneerror2009-05-15T03:28:54Z2009-05-15T03:28:54Z<blockquote>
<p>Do you write createSomething() or
addSomething()?</p>
</blockquote>
<p>I use createThing() when something doesn't exist, and addThing() if something <em>does</em> exist and we'll be adding a different thing to it.</p>
<blockquote>
<p>Do you write readSomething(),
getSomething() or fetchSomething()?</p>
</blockquote>
<p>I'd use readThing() if I was reading bytes (or similar), getThing() if I'm accessing a property and fetchThing() if I'm accessing an external source.</p>
<p>Depends on context and preference. LSS, <em>Creating</em> something is definitely different from <em>Adding</em> something. Personally, I feel they aren't interchangeable.</p>