active questions tagged crud - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T12:32:18Zhttp://stackoverflow.com/feeds/tag/crudhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2467635/do-i-really-need-bindparam0Do I really need bindParam?sandeliushttp://stackoverflow.com/users/2312852010-03-18T05:00:03Z2010-03-18T05:22:42Z
<p>Hi there!</p>
<p>I'm trying to do a little PDO CRUD to learn some PDO. I have a question about bindParam. Here's my update method right now:</p>
<pre><code>public static function update($conditions = array(), $data = array(), $table = '')
{
self::instance();
// Late static bindings (PHP 5.3)
$table = ($table === '') ? self::table() : $table;
// Check which data array we want to use
$values = (empty($data)) ? self::$_fields : $data;
$sql = "UPDATE $table SET ";
foreach ($values as $f => $v)
{
$sql .= "$f = ?, ";
}
// let's build the conditions
self::build_conditions($conditions);
// fix our WHERE, AND, OR, LIKE conditions
$extra = self::$condition_string;
// querystring
$sql = rtrim($sql, ', ') . $extra;
// let's merge the arrays into on
$v_val = array_values($values);
$c_val = array_values($conditions);
$array = array_merge($v_val, self::$condition_array);
$stmt = self::$db->prepare($sql);
return $stmt->execute($array);
}
</code></pre>
<p>in my "self::$condition_array" I get all the right values from the ?. SO the query looks like this:</p>
<pre><code>UPDATE table SET this = ?, another = ? WHERE title = ? AND time = ?
</code></pre>
<p>as you can see I dont use bindParams instead I pass the right values in the right order ($array) directly into the execute($array) method. This works like a charm BUT is it safe not use use bindParam here?</p>
<p>If not then how can I do it?</p>
<p>Thanks from Sweden</p>
<p>Tobias</p>
http://stackoverflow.com/questions/2467232/is-there-a-drupal-module-for-forms-with-powerful-crud-style-behaviour3Is there a Drupal module for Forms with powerful CRUD style behaviour?Petrashttp://stackoverflow.com/users/246962010-03-18T02:32:00Z2010-03-18T02:44:20Z
<p>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 the website.
Some of the tables are purely in the CMS and are used to create custom modules on the front end of the website.</p>
<p>Although there is a forms module in Drupal, I think our requirements cannot be met by it.
Does anyone know of a system that allows forms to be saved to a CRUD style database with the following features?</p>
<p><img src="http://www.yart.com.au/drupal/crudsummary.png" alt="alt text"></p>
<ol>
<li><p>Export of all database fields.</p></li>
<li><p>View a summary of the records in a filterable table.</p></li>
<li><p>With paging</p></li>
<li><p>You can have one to many relationships in records eg </p></li>
</ol>
<p><img src="http://www.yart.com.au/drupal/cruddetail.png" alt="alt text"></p>
<p>To code this manually for 10 forms is A LOT of work. Particularly the one to many relationships. If there is a powerful module available it would save us writing one.</p>
http://stackoverflow.com/questions/2441031/what-kind-of-events-should-be-created-for-a-crud-application1What kind of events should be created for a CRUD application?Mohit Deshpandehttp://stackoverflow.com/users/2004772010-03-14T02:57:07Z2010-03-14T13:50:12Z
<p>I have an application that is centered around a database (ORM is LINQ-SQL) that has a table called Assignment. I am using the repository pattern to manipulate the database. My application is basically going to perform CRUD operations. I am new to delegates and events and I am asking you what events I should create (like maybe AssignmentCreating, AssignmentCreated) and what kind of delegate to use (like maybe a custom delegate or just an EventHandler)? <b>UPDATE:</b> My application has a ListView with some columns that show some data. On the right side, I have a panel with textboxes binded to the values of the currently selected assignment. Like a textbox for Score, one for title, etc. and they are all editable. That deals with the <i>Read</i> and <i>Update</i>. Then I have a custom dialog box that has the same kinds of textboxes, and the dialog <i>Creates</i> new assignments. Then users can just select an assignment and <i>Delete</i> it via the Delete button, or a context menu.</p>
http://stackoverflow.com/questions/2438353/need-direction-in-creating-an-application-which-generates-a-crud-form1Need direction in creating an application which generates a crud formAlteredConcepthttp://stackoverflow.com/users/873422010-03-13T12:45:36Z2010-03-13T19:55:23Z
<p>Hi all,</p>
<p>I was wondering if anyone knew of any way i can implement an application which will do the following.</p>
<ol>
<li>Allow a user to specifiy a connection string to a sql db</li>
<li>Allow a user to specify a table in the db</li>
<li>Allow a user to specify columns from the specified table</li>
<li>Generate Views, a Controller with Crud methods, & Data access code on the fly for the specified table columns in a subdirectory on the current web app.</li>
</ol>
<p>I'm aware that there are apps that currently do this (such as sharepoints list creation stuff), but i'd like to see how this was accomplished and recreate it for my own learning purposes.</p>
<p>Thanks alot for any help</p>
http://stackoverflow.com/questions/2427247/using-get-instead-of-post-to-delete-data-behind-authenticated-pages2Using GET instead of POST to delete data behind authenticated pagesMatt Spradleyhttp://stackoverflow.com/users/585252010-03-11T17:35:24Z2010-03-11T19:38:57Z
<p>I know you should use POST whenever data will be modified on a public website. There are several reasons including the fact that search engines will follow all the links and modify the data.</p>
<p>My question is do you think it is OK to use GET behind authenticated pages in something like an admin interface?</p>
<p>One example would be a list of products with a delete link on each row. Since the only way to get to the page is if you are logged in, is there any harm in just using a link with the product ID in the query string?</p>
<p><strong>Elaboration for comments:</strong></p>
<p>I personally don't have any issues or difficulties in implementing the deletes with POST. I have just seen several examples of code in ASP.NET and ASP.NET MVC for "admin like" pages that use GET instead of POST. I am curious about peoples' opinion on the matter.</p>
http://stackoverflow.com/questions/235018/what-is-scaffolding-is-it-a-term-for-a-particular-platform2What is scaffolding? Is it a term for a particular platform?AnonymousAnonymoushttp://stackoverflow.com/users/311992008-10-24T19:46:15Z2010-03-09T13:09:46Z
<p>Scaffolding, what is it? Is it a Rails-only thing?</p>
http://stackoverflow.com/questions/347426/how-to-use-nhibernate-with-asp-net-3-5-not-mvc1How to use nhibernate with ASP.NET 3.5 (not MVC)ChaosSpeederhttp://stackoverflow.com/users/151792008-12-07T09:26:55Z2010-03-08T10:50:30Z
<p>What is the best way to interop with NHibernate 2.0 and ASP.NET 3.5? How can I easily develop a CRUD application?</p>
<p>Is the ObjectDataSource the way to go?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1937029/best-practices-for-updating-multiple-check-boxes-on-a-web-form-to-a-database0Best Practices for updating multiple check boxes on a web form to a databaseAndreyhttp://stackoverflow.com/users/1512002009-12-20T20:58:41Z2010-03-02T15:05:01Z
<p>A sample case scenario - I have a form with one question and multiple answers as checkboxes, so you can choose more than one. Table for storing answers is as below:</p>
<pre><code>QuestionAnswers
(
UserID int,
QuestionID int,
AnswerID int
)
</code></pre>
<p>What is the best way of updating those answers to the database using a stored proc? At different jobs I've seen all spectrum, from simply deleting all previous answers and inserting new ones, to passing list of answers to remove and list of answers to add to the stored proc. </p>
<p>In my current project performance and scalability are pretty important, so I'm wondering what's the best way of doing it?</p>
<p>Thanks!
Andrey</p>
http://stackoverflow.com/questions/2363540/wcf-soa-crud-data-access-service-why-bother-or-is-our-design-wrong2WCF SOA: CRUD Data Access Service...why bother (or is our design wrong)?mrlanehttp://stackoverflow.com/users/1507592010-03-02T13:56:22Z2010-03-02T14:06:06Z
<p>Hello all again.</p>
<p>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 data for queries. Any other service in the system wanting to access the tables under the contol of the DAS have to go to the DAS to get it or modify it. We use Entity Framework and built our own POCO state tracking system for this DAS.</p>
<p>We have other tables in our database that belong to single services and store data only for their own use, ie state information they can access if they crash and resume or recording of business information. We have a rule any one table cannot be accessed by more than one service: so data needed by multiple services ends up in the DAS.</p>
<p>Truth is I have never really understood why a Data Access Service is a good idea as opposed to just accessing tables directly. It seems to be to be slower, our DAS is not transactional as it cannot send back a POCO graph for database update (only single POCOS at a time) and we have issues also where the DAS is actually a client to another service which needs data from it...circular dependancy.</p>
<p>Why bother with a DAS? Why is a DAS so important when it comes to SOA? What am I missing here? Single point of control?</p>
<p>Is it also an SOA design flaw that not all tables are part of a DAS and that some services have their own "private" tables?</p>
<p>Any discussion about this welcome.</p>
http://stackoverflow.com/questions/2316803/i-need-an-idea-for-a-restful-implementation-of-inventory-api-for-an-rpg-game7I need an idea for a RESTful implementation of inventory API for an RPG game.Vitaly Kushnerhttp://stackoverflow.com/users/742352010-02-23T08:51:13Z2010-02-27T17:10:11Z
<p>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.</p>
<p>inventory consists of several <code>slots</code> like <code>head</code>, <code>chest</code> etc (like in most RPG games).</p>
<p>Now I need to define REST API to move all items from slot X to slot Y.</p>
<p>few ideas I had:</p>
<ul>
<li>well, obviously the inventory lives at <code>/inventory</code></li>
<li>so 1st idea was to have smth like <code>/inventory/movement</code> and to have a <code>CREATE</code> on that to make it <code>CRUD</code>. so it will be <code>POST /inventory/movement</code>. this will be CRUD and REST, but it feels very bad.</li>
<li>another one was to have some magic attributes on the inventory and to just do update on it: <code>PUT /inventory?move_from=A&move_to=B</code>. This still doesn't feel too good.</li>
</ul>
<p>so.. any idea for a clean CRUD REST solution for this?</p>
<p>UPDATE: just had another one: <code>PUT /inventory/:to_slot?from=:from_slot</code> - not sure still. why is the action on just one slot when 2 are involved? hmm... ugh!</p>
http://stackoverflow.com/questions/2338372/crud-with-telerik-radgrid-and-linq-to-entity0crud with telerik radgrid and linq to entityJronnyhttp://stackoverflow.com/users/2176062010-02-25T23:15:49Z2010-02-26T08:18:29Z
<p>I was thinking if is it possible to do crud on telerik radgrid and the data were from a linq to entity.</p>
<p>I was using edmx, then I have set Radgrid's DataSource with data resulting from a linq query. Here it goes: </p>
<pre><code>DatabaseModel.Entities entities = new DatabaseModel.Entities();
RadGrid1.DataSource = from courses in entities.Courses
select new {
courses.CourseName,
courses.CourseCode,
courses.Description
};
RadGrid1.DataBind();
</code></pre>
<p>and the Radgrid was declared this way:</p>
<pre><code><telerik:RadGrid ID="RadGrid1" runat="server"
AllowAutomaticDeletes="true" AllowAutomaticInserts="true"
AllowAutomaticUpdates="true" AllowPaging="True"
AutoGenerateDeleteColumn="True" EnableHeaderContextMenu="True"
AllowFilteringByColumn="True" AllowSorting="True" AutoGenerateEditColumn="True">
<MasterTableView CommandItemDisplay="Top" >
</MasterTableView>
</telerik:RadGrid>
</code></pre>
<p>Is there any way we could edit the db contents this way? Thanks a lot.</p>
http://stackoverflow.com/questions/2303107/create-action-in-asp-net-mvc-cannot-add-an-entity-with-a-key-that-is-already-in0Create action in ASP.NET MVC: Cannot add an entity with a key that is already in use [closed]awrigleyhttp://stackoverflow.com/users/2710872010-02-20T18:08:15Z2010-02-20T19:08:05Z
<p>Not really a question, just documenting a newbie gotcha.</p>
<p>When testing my app, I was getting the following error:</p>
<p><strong>Cannot add an entity with a key that is already in use</strong></p>
<p>It took me a while to realise I hadn't checked for ModelState.IsValid before my code hit the line where the object I am creating gets added to its Repository.</p>
<p>As a result, I had already added the object to the DataContext (hidden away in the repository) BEFORE the error struck (in the Save() method of my Repository). As a result, although everything else worked, the next time I submitted my form, there was already an object in the DataContext and hence the error.</p>
<p>The code below illustrates the point. You MUST wrap your code that adds the object to the repository with the if (ModelState.IsValid) check.</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(FormCollection collection)
{
IllnessDetailFormViewModel mfv = new IllnessDetailFormViewModel();
if (ModelState.IsValid)
{
try
{
// TODO: Add insert logic here
UpdateModel(mfv);
mfv.IllnessDetail.username = HttpContext.User.Identity.Name;
mfv.IllnessDetail.DateCreated = DateTime.Now.Date;
idr.Add(mfv.IllnessDetail);
idr.Save();
return RedirectToAction(
"Details", new { id = mfv.IllnessDetail.IllnessDetailsId }
);
}
catch
{
ModelState.AddRuleViolations(mfv.IllnessDetail.GetRuleViolations());
}
}
return View(mfv);
}
</code></pre>
http://stackoverflow.com/questions/2282251/automagic-output-fields-in-cakephp2"Automagic" output fields in CakePHP?Daniel Magliolahttp://stackoverflow.com/users/33142010-02-17T16:09:26Z2010-02-19T00:11:24Z
<p>I'm currently using CakePHP's "automagic" field elements for my CRUD forms.<br>
By this I mean I'm using the </p>
<pre><code>echo $form->input('fieldname', $options);
</code></pre>
<p>method to generate everything.</p>
<p>This chooses the correct element type, and wraps everything into a div with a <label> element.</p>
<p>Now I have some fields that are not editable, but i'd like for them to show (so there wouldn't really be a label, just a span, and instead of the <input> control, there'd be simply some text, or a span.<br>
I also need to be able to control the contents of the "field value" arbitrarily.</p>
<p>Is there a way to do this with $form->input?<br>
I know I can simply generate the markup for all this, but it'd look pretty ugly, and it's very repetitive.</p>
<p>Thanks!<br>
Daniel</p>
http://stackoverflow.com/questions/1762645/openxava-create-list-with-all-modules0OpenXava - create list with all modulesarekhttp://stackoverflow.com/users/1530172009-11-19T11:25:07Z2010-02-14T18:00:48Z
<p>Hi,
Is there any way I can create simple start page for OpenXava. I mean page with links to all modules for example:</p>
<ol>
<li>People </li>
<li>Invoices</li>
<li>Etc...</li>
</ol>
<p>Would be great to have solution out of the box.
I haven't found anything in documentation with this topic.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/2220462/wcf-data-service-surrogate-key0WCF Data Service / Surrogate Keyjehohttp://stackoverflow.com/users/1414782010-02-08T09:04:17Z2010-02-08T13:58:32Z
<p>I want to build a WCF data service which should be used for CRUD operations on a database backend. In order to identify the related record of the object in the database I have to know it's primary key. I use surrogate keys in my database schema.</p>
<p>Is it a good practice to pass the surrogate keys to the caller, so that it is possible to identify the records in the database in subsequent calls? (Caller retrieves object, caller modifies object, caller calls WCF update method) I know that surrogate keys should normally not be used outside the database. If that is not a good idea, what other options do I have? </p>
<p>Any advice is greatly apreciated.</p>
http://stackoverflow.com/questions/2219972/data-adapter-not-able-to-update-records-added-updated-deleted-in-net0Data Adapter not able to update records added/updated/deleted in .NETRavi Khambhatihttp://stackoverflow.com/users/1309482010-02-08T06:36:47Z2010-02-08T06:36:47Z
<p>Steps,</p>
<ol>
<li>Crate window application with single form</li>
<li>add new datasource from Data->Add new Data source</li>
<li>Goto Data->Show Data Source</li>
<li>Drop any table to form. This step will add tow controls. a. DataGridView b. Binding Navigator</li>
</ol>
<p>press F5 to run. </p>
<p>I am able to view all the records but not able to do add/update/delete.</p>
<p>Below is the code of the form that is generated by VS.</p>
<pre><code>namespace TestingGrid
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void testBindingNavigatorSaveItem_Click( object sender, EventArgs e )
{
this.Validate();
this.testBindingSource.EndEdit();
this.testTableAdapter.Update( this.testDataSet.Test );
}
private void Form1_Load( object sender, EventArgs e )
{
// TODO: This line of code loads data into the 'testDataSet.Test' table. You can move, or remove it, as needed.
this.testTableAdapter.Fill( this.testDataSet.Test );
}
}
}
</code></pre>
http://stackoverflow.com/questions/2216961/visual-basic-6-tutorials-for-data-access-and-crud0Visual Basic 6 tutorials for data access and CRUDyoitsfrancishttp://stackoverflow.com/users/779932010-02-07T13:54:01Z2010-02-07T14:00:13Z
<p>Do you know some tutorials (preferably a website or a blog) in Visual Basic 6 (not Visual Basic .NET) for data access or CRUD? The caliber and depth that I'm looking for is similar to this site:</p>
<p>Data Access Tutorials for ASP.NET</p>
<p><a href="http://www.asp.net/learn/data-access/" rel="nofollow">http://www.asp.net/learn/data-access/</a></p>
<p>Although the above site is for web applications, I am looking for a WinForm VB6 tutorial.</p>
<p>Thanks in advance for your time.</p>
http://stackoverflow.com/questions/2145687/good-ideas-for-automating-common-crud-operations-in-rails1Good Ideas for Automating Common CRUD Operations in Railsviatroposhttp://stackoverflow.com/users/1699922010-01-27T09:26:16Z2010-02-06T06:39:27Z
<p><em>Short version</em>: What are some good ways to allow the end user to define "processes" or sequentially executed CRUD operations in a fairly large project, so they can build <em>templates</em> for common processes (like creating 2 tickets for each new event posted automatically)? Something like <a href="http://cukes.info/" rel="nofollow">Cucumber</a>, but for CRUD operations..., or even <a href="http://www.bukisa.com/articles/100688_automate-your-web-browser-actions-by-selenium" rel="nofollow">Selenium</a>?</p>
<p>Here's the situation:</p>
<p>I have inherited a very large project (the <a href="http://spreecommerce.com/" rel="nofollow">Spree eCommerce project</a>), which I am modifying for a client. It's a very complex and very nicely done project. Most/all of the workflows for creating <code>Products</code>, <code>ProductGroups</code>, categories, etc., are very well defined, which means they could be automated.</p>
<p>So my client wants to be able to say "when I create a new <code>Event</code>, I want it to create this too:</p>
<ul>
<li>Two tickets: 1 for $400, one for $500, which go on sale X and Y time after we create the event</li>
<li>If it's <em>this</em> <code>Event</code>, also create this "early-bird" special."</li>
</ul>
<p>This translates to <code>create/save</code>-ing 4, maybe more, models in Spree: <code>Event, Product, ProductGroup, ProductProperty</code>.</p>
<p>If I were to manually solve this edge case, I'd have to write quite a bit of code and do some serious refactoring (or copy-pasting) to make it so my client could create their tickets for each event they create. But what about the next case, "I want it to categorize each Ticket under <em>this</em> and <em>that</em> based on the event <code>date</code>, <code>location</code>, and <code>meta_keywords</code>." Now I have to start all over again...</p>
<p>What I want to be able to do for them is allow them to configure all this stuff, so they can define:</p>
<ul>
<li>all kinds of default values to fill in product descriptions, prices, etc.</li>
<li>to create X number of products based on the title of the Event.</li>
<li>maybe some more things later.</li>
</ul>
<p>The end result of all this is, Admin fills out one form, and it fills out 5 forms in the background (things that they don't need to know about necessarily, but need to be done).</p>
<p>I don't know the best or most common way to do this. I'm figuring it out as I go, but I'm sure many of you have some good ideas for this.</p>
<p>So the question(s) are:</p>
<p><strong>What is the best way to make all of this configurable?</strong></p>
<p>Spree has many of the methods I'd need buried inside of controllers, so it seems that a good practice would be to not include any methods in the controller, only references to methods in Modules (so you could reuse it everywhere). Unless you were allowed to chain multiple <code>redirect_to</code> calls together, which you're not.</p>
<p>Are there any examples of something with this kind of configurability for the end user? Something like ERB templates for sequential CRUD operations?</p>
<p><strong>Do I really need to code all of these cases manually?</strong></p>
<p>The example above (of creating 2-3 tickets per event based on some property values) is pretty specific. Have any of you been able to create a system that's this configurable? The end goal would be for them to be like "oh, I've done this more than once, let's just make a template for this Event so next time it creates everything I did".</p>
<p>Just looking for some sort of push in the right direction, or some good examples on workflow automation. Something like <a href="http://cukes.info/" rel="nofollow">Cucumber</a>, but for CRUD operations...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/2167957/im-a-pretty-good-c-developer-but-ive-never-done-something-like-this-how-woul0I'm a pretty good C# developer, but I've never done something like this; how would I create a CRUD application generator?Sergio Tapiahttp://stackoverflow.com/users/2622692010-01-30T13:15:39Z2010-01-30T13:35:01Z
<p>I found SubSonic, but I'd rather roll my own with a few buddies.</p>
<p>I've <strong>never</strong> done something like this before, but if you tell me technically how I should proceed, I can figure it out.</p>
<p>I want to have a sort of visual designer. Ask the user what tables there are going to be, the relations, what fields, which are primary keys, etc.</p>
<p>Then generate all the appropriate classes with the appropriate DAL and SQL database.</p>
<p>After all is said and done, I'd like to output a simple .exe file with a generic look that allows a user to view all the fields, etc.</p>
<p>Any tips, I'm not sure if I should mark this a community wiki or not, because I don't think there is a specific answer. Let me know SO.</p>
http://stackoverflow.com/questions/414583/is-there-a-crud-generator-utility-in-javaany-framework-like-scaffolding-in-rail4Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?Sathishhttp://stackoverflow.com/users/514022009-01-05T21:26:54Z2010-01-25T07:20:12Z
<p>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...</p>
http://stackoverflow.com/questions/2129201/good-jquery-exention-for-on-the-fly-crud0good jquery exention for on-the-fly CRUDdanicgrosshttp://stackoverflow.com/users/2580262010-01-24T22:37:52Z2010-01-24T22:41:14Z
<p>Hi
I have a user profile page, and I'd like to have an extension that will let the user edit his details on the page, on the fly.</p>
<p>The way I figure this happening is once any value is clicked (i.e., "my nickname") it is converted to an editable <code>textarea</code>, and on blur of said <code>textarea</code>, the data is submitted via ajax to the sever, and the form will be converted back to plaintext, with the updated data.</p>
<p>Has anyone heard of an extention that does this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/497073/best-technology-for-java-based-simple-crud-web-site3Best technology for Java based simple CRUD web sitewm.a.staffordhttp://stackoverflow.com/users/249892009-01-30T20:17:52Z2010-01-16T09:56:20Z
<p>I want to create a CRUD (create, retrieve, update, delete) web site using the simplest Java tools. This site will allow users to manage four tables, two of which are reference tables used to build menus and two of which will undergo CRUD activity.</p>
<p>I'm leaning toward Stripes but I would like to hear the opinions of experience developers. The three key requirement are simple, simple, simple! I think Struts and Spring MVC are more complicated than I need.</p>
<p>-=beeky</p>
http://stackoverflow.com/questions/2051164/entity-framework-mapped-multiple-tables-into-one-entity-insert-problems3Entity Framework: Mapped multiple Tables into one Entity -Insert problemsArthurhttp://stackoverflow.com/users/1785172010-01-12T18:02:49Z2010-01-14T09:35:37Z
<p>Hi all!</p>
<p>Today I have an Entity Framework Question. I have two Tables: Projects and Projects_Rights</p>
<p><img src="http://www.zaczek.net/EF-stackoverflow.jpg" alt="alt text" title="My Tables"></p>
<ul>
<li>Projects contains some Projects...</li>
<li>Project_Rights contains access rights for each Identity (=User) for each Project. This Table is computed by triggers/functions.</li>
</ul>
<p>Mapping those table into <strong>one</strong> entity was no challenge:</p>
<pre><code>class Project
{
int ID;
double AufwandGes;
DateTime CreatedOn;
...
int CurrentIdentity__Implementation__;
int CurrentAccessRights__Implementation__;
}
<EntitySetMapping Name="Projekt">
<EntityTypeMapping TypeName="IsTypeOf(Model.Projekt)">
<MappingFragment StoreEntitySet="Projekt">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="AufwandGes" ColumnName="AufwandGes" />
<ScalarProperty Name="ChangedOn" ColumnName="ChangedOn" />
<ScalarProperty Name="CreatedOn" ColumnName="CreatedOn" />
<ScalarProperty Name="Kundenname" ColumnName="Kundenname" />
<ScalarProperty Name="Name" ColumnName="Name" />
</MappingFragment>
<MappingFragment StoreEntitySet="Projekt_Rights">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="CurrentIdentity__Implementation__" ColumnName="Identity" />
<ScalarProperty Name="CurrentAccessRights__Implementation__" ColumnName="Right" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</code></pre>
<p>Selecting projects either:</p>
<pre><code>var prjList = ctx.GetQuery<Project>()
// This condition is added automatically by a custom Linq Provider
.Where(p => p.CurrentIdentity__Implementation__ == Thread.CurrentPrincipal.Identity.ID);
</code></pre>
<p>I've figured out how to prevent Entity Framework from <strong>updating</strong> CurrentIdentity_<em>Implementation</em>_(=Identity) & CurrentAccessRights_<em>Implementation</em>_(=Right). This is done in the SSDL by setting StoreGeneratedPattern="Computed".</p>
<pre><code> <EntityType Name="Projekte_Rights">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" Nullable="false" />
<Property Name="Identity" Type="int" Nullable="false" StoreGeneratedPattern="Computed" />
<Property Name="Right" Type="int" Nullable="false" StoreGeneratedPattern="Computed" />
</EntityType>
</code></pre>
<p>I've declared a cascade <strong>delete</strong> in my SQL Server and SSDL. Works great!</p>
<p>My problem is: How can I prevent Entity Framework from <strong>inserting</strong> a record into the Project_Rights table? Adding records there is done by a trigger/function.</p>
<p>Thanks for pointing me to the right direction!</p>
<p><strong>EDIT:</strong> </p>
<p>I found another way. Thanks to Alex for helping me leaving this path.</p>
<p>I've created a View</p>
<pre><code>create view Projekte_with_Rights as
select tbl.*, r.[Identity], r.[Right]
from Projekte tbl
inner join Projekte_Rights r on tbl.ID = r.id
</code></pre>
<p>This View is updatable. To be able to delete a row I implemented this trigger:</p>
<pre><code>create trigger Projekte_with_Rights_DeleteTrigger
ON Projekte_with_Rights
INSTEAD OF DELETE AS
BEGIN
DELETE FROM Projekte WHERE ID in (SELECT ID FROM deleted)
END
</code></pre>
<p>Now I can map this view as a "table" in Entity Framework. [Identity] and [Rights] are mapped as computed columns.</p>
<p>Another Trigger is now responsible for filling in the correct Identities and Rights. And here I have another Problem. If I insert more then one Row into the Projekte_Rights Table EF claims that a Entity returned more than one Row. but that's another story and out of scope of this question. </p>
http://stackoverflow.com/questions/2020951/simple-php-crud-generator1Simple PHP Crud GeneratorLuca Matteishttp://stackoverflow.com/users/503942010-01-07T14:29:14Z2010-01-08T15:08:52Z
<p>I am looking for a simple PHP crud object generator to use with SQL database tables.</p>
<p>I've used <a href="http://www.phpobjectgenerator.com/" rel="nofollow">POG</a> and was wondering if there were any alternatives.</p>
http://stackoverflow.com/questions/2023018/creating-and-updating-many-to-many-relationships-in-c-asp-net-mvc-with-linq2sql1Creating and Updating many to many relationships in C# asp.net MVC with Linq2SqlRememberMEhttp://stackoverflow.com/users/2397932010-01-07T19:25:42Z2010-01-08T03:42:24Z
<p>I have created a web app in MVC following the NerdDinner tutorial. I have 2 fields that have many to many relationship with my "dinner". For each "dinner", I need to be able to select one or more Companies from a Company table and one or more Services from a Service table. I've been reading blogs and forums for 2 days, but can't seem to figure it out. I have a ServicetoDinner table with foreign keys to the service and the dinner, and the same for the Companies. I know how to loop through to display them, but I don't know how to select multiple companies and/or services when creating a new "dinner" and how to save them.</p>
<p>I'm getting frustrated. Thanks!</p>
http://stackoverflow.com/questions/1991216/netbeans-creating-jpa-controller-classes-from-entity-classes1Netbeans creating "JPA Controller classes from entity classes"celalohttp://stackoverflow.com/users/1593462010-01-02T10:37:52Z2010-01-02T11:20:21Z
<p>Hello, </p>
<p>I want to achieve basic CRUD operations available of the db schema I already have for a JAVA program. To put it in another way, I have a DB schema I use with PHP and I just need them to be entities available in a JAVA application. I discovered I can use Netbeans and sucessfully created Entities from DB!</p>
<p>(Entities look like this: <a href="http://pastebin.com/f601b9218" rel="nofollow">http://pastebin.com/f601b9218</a>)</p>
<p>However when I try to create New > JPA controllers from entity classes in Netbeans I got empty JPA controller classes like:</p>
<pre><code>package javaapplication3;
public class CustomerJpaController {
}
</code></pre>
<p>It is empty :) I was expecting CRUD functions inside the generated JPA controller classes as I read from examples and tutorials.
What could be the reason of empty JPA controller classes? Is there any other easy way for me to "just" match DB tables with JAVA classes for basic CRUD operation. (I wish there could be easy way to achieve active record pattern)</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1975036/linq-why-this-approach-dont-seem-to-work-what-should-be-the-standard-approach0Linq : Why this approach don't seem to work? What should be the standard approach?JMSAhttp://stackoverflow.com/users/1590722009-12-29T14:51:36Z2009-12-29T15:50:35Z
<p>Why this approach don't seem to work? What should be the standard approach?</p>
<pre><code>[Database(Name = "Test")]
[Table(Name = "Order")]
public class Order
{
[Column(Name = "ID", IsPrimaryKey = true)]
public int ID { get; set; }
[Column(Name = "OrderDate")]
public DateTime OrderDate { get; set; }
public static Order Get(int id)
{
Order item = null;
try
{
DataContext dc = new DataContext(@"Data Source=.\sqlexpress;Initial Catalog=Test;Integrated Security=True");
var items = from order
in dc.GetTable<Order>()
where order.ID == id
select order;
item = items.FirstOrDefault<Order>();
dc.Dispose();
}
catch (Exception ex)
{
item = null;
throw ex;
}
return item;
}
public bool Delete()
{
bool success = false;
try
{
DataContext dc = new DataContext(@"Data Source=.\sqlexpress;Initial Catalog=Test;Integrated Security=True");
dc.GetTable<Order>().DeleteOnSubmit(this);
success = true;
}
catch (Exception ex)
{
success = false;
throw ex;
}
return success;
}
}
class Program
{
static void Main(string[] args)
{
Order order = Order.Get(1);
order.Delete();
Console.ReadLine();
}
}
</code></pre>
<p>This code generates the following exception:</p>
<pre><code>InvalidOperationException : "Cannot remove an entity that has not been attached."
</code></pre>
<p>I have also tried the following:</p>
<pre><code>DataContext dc = new DataContext(@"Data Source=(local)\sqlexpress;Initial Catalog=Relationships_Test;user=;password=;Integrated Security=True");
dc.GetTable<Order>().Attach(this);
dc.GetTable<Order>().DeleteOnSubmit(this);
</code></pre>
<p>It didn't work either.</p>
http://stackoverflow.com/questions/1833724/generating-simple-crud-applications-in-spring-based-off-existing-database-or-hibe1Generating simple crud applications in Spring based off existing database or hibernate configurations?Jaredhttp://stackoverflow.com/users/147442009-12-02T15:42:41Z2009-12-18T09:31:11Z
<p>I'm attempting to learn Spring MVC but have been spoiled by Grails. While I am able to get a basic web application working I was wondering if there were any tools that could do some of the work to create a crud application given a database or hibernate data model? The only one I've found so far is <a href="http://www.skywayperspectives.org/portal/web/guest/downloads/overview" rel="nofollow">http://www.skywayperspectives.org/portal/web/guest/downloads/overview</a> I'm not sure how to take the generated code and convert it to use either maven or ant for it's build process.</p>
http://stackoverflow.com/questions/386838/simple-reusable-crud-in-php-no-famework-or-big-classes0Simple / reusable CRUD in PHP (NO famework or big classes)titelhttp://stackoverflow.com/users/439232008-12-22T17:38:01Z2009-12-14T22:57:29Z
<p>I'm working on a PHP CMS like project and I'm trying to find out what's the most convenient way of dealing with the CRUD functionality in PHP.</p>
<p>The CMS is programmed completely in procedural PHP (no OOP - I know that many of you will not agree with this...) and was designed keeping everything as simple and light as possible, as well as creating highly reusable functions and snippets of code.</p>
<p>The CMS allows multiple modules to be installed / activated on needs basis. These modules describe different types of content so I will probably end up having something like pages, news, blogs just to name a few.</p>
<p>For each of this content types I will have to create the CRUD operations and now I'm trying to find the most convenient way to achieve this.</p>
<p>One requirement would be that the form for each of these content types is contained in a single external file (for both insert and edit) and if there is some way to integrate server side input validation that would be a plus.</p>
<p>Thank you in advance for your time,
Constantin TOVISI</p>
http://stackoverflow.com/questions/1896325/advantages-of-vb-net-over-vb6-for-crud-application-development0Advantages of vb.net over vb6 for CRUD application developmentjjbhttp://stackoverflow.com/users/1180492009-12-13T12:15:01Z2009-12-14T04:39:48Z
<p>What are the improvements in vb.net compared to vb6 that make developing such an application easier?</p>