CRUD vs AGUD vs AFUD...what's your naming convention of preference - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:32:00Z http://stackoverflow.com/feeds/question/360321 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/360321/crud-vs-agud-vs-afud-whats-your-naming-convention-of-preference 3 CRUD vs AGUD vs AFUD...what's your naming convention of preference geekinger 2008-12-11T18:12:57Z 2009-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#360343 2 Answer by Macka for CRUD vs AGUD vs AFUD...what's your naming convention of preference Macka 2008-12-11T18:19:28Z 2008-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&amp;dq=domain+driven+design&amp;pg=PP1&amp;ots=ulAXXY_cv4&amp;source=bn&amp;sig=8XAWjS01zPeAhz-BbtMOk1TCqCY&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result" rel="nofollow">Domain Driven Design</a> book you should Add &amp; 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#360345 0 Answer by JeeBee for CRUD vs AGUD vs AFUD...what's your naming convention of preference JeeBee 2008-12-11T18:20:45Z 2008-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#360379 0 Answer by James Curran for CRUD vs AGUD vs AFUD...what's your naming convention of preference James Curran 2008-12-11T18:29:47Z 2008-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#360395 0 Answer by Darron for CRUD vs AGUD vs AFUD...what's your naming convention of preference Darron 2008-12-11T18:36:02Z 2008-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#360760 0 Answer by monzee for CRUD vs AGUD vs AFUD...what's your naming convention of preference monzee 2008-12-11T20:24:41Z 2008-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#364811 3 Answer by Phil Laliberte for CRUD vs AGUD vs AFUD...what's your naming convention of preference Phil Laliberte 2008-12-13T04:07:03Z 2008-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#364843 0 Answer by Nathan Strong for CRUD vs AGUD vs AFUD...what's your naming convention of preference Nathan Strong 2008-12-13T04:35:21Z 2008-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#364849 0 Answer by Ant P for CRUD vs AGUD vs AFUD...what's your naming convention of preference Ant P 2008-12-13T04:39:29Z 2008-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#852858 0 Answer by markblue777 for CRUD vs AGUD vs AFUD...what's your naming convention of preference markblue777 2009-05-12T13:40:27Z 2009-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 -1 Answer by Devtron for CRUD vs AGUD vs AFUD...what's your naming convention of preference Devtron 2009-05-13T15:34:18Z 2009-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#866853 0 Answer by Typeoneerror for CRUD vs AGUD vs AFUD...what's your naming convention of preference Typeoneerror 2009-05-15T03:28:54Z 2009-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>