C# - Best Practice For Inserting/updating Data In Multiple Tables At Once?
Feb 11, 2011
So I have two tables in my database, Contacts and Addresses:
Contacts : ContactID | AddressID | FirstName | LastName
Addresses: AddressID | Address1 | Address2 | City | State | Zipcode
I have a page where you can add a contact. It contains all the information for a contact and an address for a contact. Here's my code for when you submit the form:
[code]...
Now my main concern is that the address is added successfully, but then an error occurs when I try to save the contact, leaving the address in the database with no contact.
What's the best practice here for rolling back any changes if an error occurs?
View 4 Replies
Similar Messages:
Jan 4, 2011
I have an C# ASP application I am writing that needs to have the capability to import a generated excel or a comma delineated sheet each day. A clerk will have this job each morning so it doesn't need to be automated. My problem in trying to understand the solution to this is that the 1 sheet contains loan information, including customer information all in the same sheet. I would like to send certain columns to update information in the loan table and send other information to update the customer table. I need it to create relationships when new loans appear in the spreadsheet.
View 1 Replies
Jun 26, 2010
After creating a dataset, which has CRUD statements generated two or more tables, which Data Control should I use that will allow me to insert data into fields into 2 or more tables from a single web form. I'm trying to create a web form that will allow the user to input student information, such as general information, medical information, etc.
View 3 Replies
Oct 4, 2010
I have an excel sheet with 2 tabs and has data in those 2 sheets(sheet1, sheet2) which correspond to different tables in the same database. This excel sheet gets updated daily, I am wiriting a console app( which will later be a batch build). I have to insert the data from the excel sheet to corresponding tables (table1, table2,table3) in database when i run it and and also if the table has the same data already present it should ignore and if there are any modifications done the data it should update the table. I know we can do this using ado.net or LINQ, I am a little new to database based programming .
View 4 Replies
Apr 9, 2010
I have a view which displays columns from multiple tables. for ex memberprofile(firstname, gender )
membereducation( education), memberoccupation(occupation) etc.
now i want to insert them. how to make this view strongly typed with multiple tables iam using linq.
View 1 Replies
May 8, 2010
I have to code this:
I'm building a registration page. The form will insert into multiple table at the same time. I need to automatically get the data from one of those tables and insert it in a field into another 2 tables.
Tables:
[URL]
As can be seen both the tcoach_Members and tcoach_Roles table have a column named UsersToRolesId; this column is a foreign key to the UsersToRoles table.
In the UsersToRoles table the Id "Is Identity" and increments by 1 automatically. The UserName and the RoleName will be entered into this table upon registration of a user. Following this, in the Roles and Members tables, this Id number must be entered.
The question is, how can I grab this Id number from the UsersToRole table and insert it into both the Roles and Members tables, via code behind? Can anyone advise me of a way to do this?
The code below is what I've done so far but I am stuck at this Id number:
[Code]....
View 2 Replies
Sep 8, 2010
Was wondering if someone can help me out with this multi update problem
I have a webform that populates a single table but due to certain dropdown data conditions it could also potentially populate 3 other tables
The tables information populates a gridview with amounts from accounts etc..
e.g.
Table 1
Site DataType account update
34 SS 12.50 N
Table 2
Site account
34 12.50
Say the above entry has the updated column changed to Y via the webform the amount 12.50 should disappear from the gridview. I was
a bit shortsighted and added the additional tables afterward. The information on the gridview pulls from the additional tables and since
the first table and the additional tables are not linked the data still stays the same in the gridview
I do have an Id column on both tables but unfortunately I added the rest of the tables after the first one so the Id's do not really match.
View 6 Replies
May 7, 2015
I have seen a project where my friend has used a sqlhelper.dll which make it easy to write code for inserting,Deleting and updating data.
ex:
ds=sqlhelper.ExecuteDataset(con,[StoredProcedure],parameter1,parameter2,...,parametern)
Or
sqlhelper.ExecuteNonQuery(con,[StoredProcedure],parameter1,parameter2,...,parametern)
And he had used a dal(data access layer)...
View 1 Replies
Apr 17, 2010
Data entered in textboxes is not getting updated in database. In debug mode I see that textbox1 and textbox2 in ItemUpdating event contain the same values as they had before calling ItemUpdating.
Here's my listview control:
[Code]....
What's wrong with updating of text1.Text, text2.Text in ItemUpdating event? Should I use e.NewValues property? If so, how to use it?
View 1 Replies
Feb 10, 2010
I`m extremely newbie to asp.net and oracle but i need to make a very simple project where asp.net inserts/updates data is oracle db. A managed to the connections, everything, made a DetailView of the DB data on the page, enabled in the Advanced SQL Generation Options the "Generate INSERT, DELETE and UPDATE statesments". Here is the code:
[Code]....
But unfortunately this does not work! I get the following error:
[Code]....
Oracle gives me creeps with these invalid characters and dates.
View 3 Replies
Aug 12, 2010
Here is the scenerio:I have a radtabstrip (with 2 tabs) at the top of my page followed by radMultiPage control Tab 1 displays pageview 1 which has a gridview showing data from our database and allows for selection or deletion of data tab 2 displays a detailsview when gridview_selectedindexchanged(from tab 1) is fired.Problem... If you select an entry in the gridview it switech the page and the detailsview into editmode (works fine) but if you then click on tab 1 without clicking update or cancel in the detailsview, the data is updated. This is what i don't want as the user has basically abandoned the changes.So what i need is a what to say ... if the detailsview is in edit or insert when the tabstrip is clicked then cancel the insert or update. I tried switching it back to readonly mode but that did not seem to work.
View 2 Replies
Jun 16, 2010
I've the user creation form where a user will be created by entering username. Below that is checkboxlist for UserGroup which is binded with the dataset with the all the usergroup. Hence up on entering the username and checkbox selected(as the user can belong to multiple UserGroups).At database end, there are basically 3 tables-
Users(UserID,UserName)
UserToGroup(UserID,GroupID)
Groups(GroupID,GroupName)
So when i click create new user, the UserId along with GroupID(whichever checked) is saved into UserToGroup table.Im relative to this kind of process and hence facing setbacks. Can somebody help in end to end process. From front to DB SP.
View 6 Replies
Jun 8, 2010
I am using Stored Procedure as my Insert/Update command in a FormView. The sp returns a value which I will need to use. How do I retrieve the value after doing an insert / update?
View 4 Replies
Jun 2, 2010
I have a web page with a gridview & formview (master/detail relationship) combo. On page load the gridview shows all records from a SQL table. On my page I have a button that when clicked shows the formview in Insert mode to allow users to add a new record to the data. I have also added a column to my gridview that has a link. When a user clicks this link it hides the gridview and shows the formview in edit mode with the detail from the record selected from the gridview.
In my formview I am using a listbox control to allow users to select multiple values. The choices in the listbox are populated by a SQL data table. I have successfully written code to post the selected listbox values to my SQL data field during Insert. When the user selects a record to edit I have code in the databound event to select values in the listbox from the choices based on the value in the sql data field. This works as well. My problem is that I cannot figure out the correct code to update my SqL data when a user is editing the record and makes changes to the selected listbox value. I have included my design code for my listbox in my formview edittemplate and also my behind code that I have attempted.
<td
style="width: 454px">
<asp:ListBox
ID="lbox_ConstructionType"
runat="server"
DataSourceID="SqlDataConstructionTypes"
DataTextField="Construction_Type"
DataValueField="Construction_Type"
SelectionMode="Multiple"
Width="144px"></asp:ListBox>
<asp:TextBox
ID="tbox_Ctype"
runat="server"
Text='<%# Bind("ConstructionTypeID") %>'></asp:TextBox></td>
[Code]....
View 9 Replies
Jun 11, 2010
I m getting following error in my eventvwr . I couldnt find reasons of the following error.
"Transaction (Process ID 110) was deadlocked on lock | communication buffer resources with another process and has been chosen as the deadlock victim. Rerun the transaction. "
The only thing my page is doing is inserting/updating data into a table in sql and the thing I can think of is because multiple users are using the same page to insert/update data? Will that cause deadlock?
View 4 Replies
Mar 7, 2012
I am Using a third party tool DevExpress ..
I need to perform Editing , Deleting , Updating and inserting in GridControl .. I am unable configure it properly ..
View 1 Replies
Feb 11, 2011
I have a button in a Gridview that updates selections. This works fine.
I made a DropDownlist wich should put the variables "Kursistnummer" and "pcsvar" in a new table.
The button in the Gridview writes the value of "kursistnummer" and the text "pcsvar" in the new table.
But if i call the sub"btnTilmeldPc_Click" i get this error:
Procedure 'LP_KursistEksamenPc' expects parameter '@kursistnummer', which was not supplied Its friday and its a bit hard stuf for me.
I have these procedures:
[Code]....
and stores procedures in my db
[Code]....
and a general dropdownlist
[Code]....
and my Grivwiev
[Code]....
View 2 Replies
Jul 22, 2013
I created 3 product table . A,B and c.
I show product of table in different gridview.
Now I am using one search box. but how to search product name with image in one query all of three table....
Simple how to search product from multiple table and show result...
View 1 Replies
Feb 21, 2011
I've scenerio where i've two dropdownlist box (one dependent on other, displays handset brand name and on selection displays the respective model name), two combolistbox which is bounded to their respective datasource(Displays the fault and accessories).
Now i've to update the three tables booking(Handsetid, Brand,model), accessories(handsetId,AcesoriesID) and fault(handsetID,faultID). Ive to update multiple rows in Accessories and fault.
These controls are present in datagridview EditTemplate
View 4 Replies
May 7, 2015
I have storedprocedure which returns four or more dataset!
example here
How load and display all data in Default.aspx....
dataset 1
............................................
dataset 2
............................................
dataset 3
............................................
dataset 4
............................................
View 1 Replies
Dec 27, 2010
I am attempting to insert into two tables at once, but it's inserting blank values into the first table, and then correctly inserting the values into the second table. here is my codebehind, I can post the rest of my code if needed.
[code]...
Even when I comment out the second insert command, the first one still inserts null values.
View 2 Replies
Sep 10, 2010
I have an SQL DB which contains 2 tables. The first one 'advs' has some information about an advertisement and it got an ID field. The second one, "photos", contains all the paths of photos, this one also has an ID field.
Each advertisement from the 'advs' Table has three photos in the PHOTOS table. now obviously the photos related to the 'ad' must have the same ID.
What I'm trying to do is a Form to add the information about each advertisement and its' photos. This form should enter the SAME ID number to both tables AUTOMATICALLY after adding.
View 10 Replies
Apr 17, 2010
Data entered in textboxes is not getting updated in database. In debug mode I see that text1 and text2 in ItemUpdating event contain the same values as they had before calling ItemUpdating.
Here's my listview control:
<asp:ListView ID="ListView1" runat="server"
onitemediting="ListView1_ItemEditing"
onitemupdating="ListView1_ItemUpdating"[code]....
Codebehind file:protected void ListView1_ItemEditing(object sender, ListViewEditEventArgs e)
{
ListView1.EditIndex = e.NewEditIndex;
BindList();[code]....
What's wrong with updating of text1.Text, text2.Text in ItemUpdating event? Should I use e.NewValues property? If so, how to use it?
View 1 Replies
Apr 8, 2010
generating logic for follwing:An option to add a range of computers based on tag numbers, for instance, user input 800101 and 800110 would add computers SYS800101, SYS800102, SYS800103, SYS 800104, SYS800105, SYS800106, SYS800107, SYS800108, SYS800109, and SYS800110. Currently the app adds a single computer at a time.Here I am using ASP.NET using C# and my backend in active directory. I had made the following code and the problem is when I enter the range like given above only the first computer in entered in the list and does not give me any error.
[Code]....
View 4 Replies
Mar 9, 2011
I am currently trying to create a web from that takes multiple lines and inserts them in to multiple rows in sql. So basically On the Web form It will have the following info
Store No = "28" Activity = "Bake Cake" Date = "3/3/11"
Store No = "28" Activity = "Eat Cake" Date = "3/6/11"
Store No = "28" Activity = "Sell Lemonade" Date = "2/3/11"
Store No = "28" Activity = "Bake Fudge" Date = "3/30/11"
Store No = "28" Activity = "Eat Cookies" Date = "5/3/11"
Currently I am using this script to insert values into SQL:
[Code]....
View 4 Replies