ADO.NET :: Update Operation In Dataset?

Jan 5, 2011

In my application i am having nearly 10 lacs row of data in a dataset with the columns like customer name,address,id,etc.. I have to update a single customer detail in the dataset using id.Is there any way for updating a customer details without using loops?

View 2 Replies


Similar Messages:

Cancel A Long Running Database Insert / Update Operation From UI When Operation Is Being Performed By A Windows Service?

Mar 7, 2010

in my case, It is the windows service which in running the long running insert/update on a table and I need to cancel the operation from my ASP.NET application. In the above link Burnsys suggests that one should kill the Sql server session. Is that really only way and a goood practice to do this? Also, in the same poset can use SqlCommand.Cancel to cancel. However, I am not sure how can I cancel the command from the windows service from ASP.NET application.

View 1 Replies

.net - Dataset In Cache: Collection Was Modified; Enumeration Operation Might Not Execute

Mar 25, 2011

I'm storing a dataset in an ASP.Net WebApplication-Cache. Every user in this intranet-app uses the same instance. On insert/update/delete-actions the database will be updated and the dataset is modified accordingly.

But rarely I get an exception that indicates that I've missed something. I assume that it must have something to do with thread safety.

Collection was modified; enumeration operation might not execute

In lines where i access a DataTable in the Dataset, for example:

Dim view As New DataView(dsERP.ERP_Charge, filter, sort, _
Data.DataViewRowState.CurrentRows)

It was apparently changed by another thread while the view enumerates the datatable.

What is the best way to make this thread safe?

Edit: as you've mentioned i need to lock the objects on add/edit/delete operations. MSDN* says that a DataSet is thread-safe for multiple users. What does this mean, are the DataTables in the Dataset also thread-safe? And how to lock a single datatable on write-operations and not the whole dataset?

*ADO.NET - Multithreaded Programming ADO.NET is optimized for performance, throughput, and scalability. As a result, the ADO.NET objects do not lock resources and must only be used on a single thread. The one exception is the DataSet, which is thread-safe for multiple readers. However, you need lock the DataSet during writes.

This is the property that returns the dataset:

Public ReadOnly Property dsERP() As ERPModel.dsERP
Get
If Cache("DS_ERP") Is Nothing Then
Cache("DS_ERP") = New ERPModel.dsERP
FillDataSet()
End If
Return DirectCast(Cache("DS_ERP"), ERPModel.dsERP)
End Get
End Property

i've modified the insert/update and delete operations in the following way(dsRma is a dataset):

Dim success As Boolean
SyncLock dsRMA.RMA
success = insert()
End SyncLock

First, does it work now if another thread tries to enumerate the RMA-Table? Second, is it sufficient to lock the datarow that gets updated instead of locking the whole datatable(see below)?

Dim thisRMA As ERPModel.dsRMA.RMARow = dsRMA.RMA.FindByIdRMA(Me.IdRma)
Dim success As Boolean
SyncLock thisRMA
success = update(thisRMA)
End SyncLock

View 1 Replies

ADO.NET :: Perform Update Operation In A Datatable Without Using Loops?

Mar 17, 2011

I need to perform update operation in a datatable without using loops. Is there any way to perform update in a datatabel...

View 3 Replies

Web Forms :: How To Get GridView Updated Row After Update Operation

Jun 20, 2012

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataSourceID="SqlDataSource1" ForeColor="#990000"
AutoGenerateEditButton="True" onrowupdated="GridView1_RowUpdated"

[Code]....

 these are my avaiable controls on the page

now on clicking the update button

i want all the values to be displayed on textboxes as above mentioned

View 1 Replies

Data Controls :: Force GridView Row To Be Editable Even After Update Operation

Aug 6, 2012

I want to do one thing that when i edit the gridview then it will not go back to  main form for editing.it will remain there in the form for the row editable.

i-e when i edit any row then it will be editable on the gridview.

<asp:GridView ID="noticeDetails" runat="server" BorderWidth="1px" AutoGenerateColumns="false" PageSize="10" Width="10%" CellPadding="10"
AllowSorting="true" AllowPaging="true" AutoGenerateEditButton="true" onrowediting="noticeDetails_RowEditing"
onrowcancelingediting="noticeDetails_Rowcancelingediting"

[CODE] ...

View 1 Replies

Forms Data Controls :: Detailsview Row Update / Creating Dataset, Getting Data From Sql With Adaptor And Filling Into Dataset Object

Dec 21, 2010

I have a detailsview, template as follows:

[Code]....

Codebehind: creating dataset, getting data from sql with adaptor and filling into dataset object, then setting detailsview's datasource.
I add 2 button to above template to able to edit data at asp page, and added event handlers:buttons:

[Code]....

My question is, what to do inside the detailsview update event function to able to edit and update data. My method can be wrong too.

View 7 Replies

Forms Data Controls :: How To Update A Gridview Footer With A Mathematical Operation

Jan 12, 2011

I have two textBox, one button and one gridview. In one texbox, I enter a value, click the button to add this entry to the gridview and the footer is computing the sum as i add more entries to the gridview.

I also have a textbox outside the gridview that will hold an amount, now I want to perform an operation like...(txtOutsideGridview - gridviewEntry1 - gridviewEntry2), and display the result of this operation inside the footer of the gridview, instead of the sum. How do I go about doing this?

So far all I have been able to do is sum up the total of entries within the Gridview, but that is not my desired operation...here is what my current code looks like

[Code]....

View 2 Replies

ADO.NET :: How To Update Database With Dataset

Feb 14, 2011

How to update database with dataset

View 4 Replies

Update Using Objectdatasource Via Class And Dataset Not Working?

Jul 22, 2010

i try to update the gridview i keep on getting the error like objectdatasource could not find a non generic method 'update' which has parameters a,b,c etc.i have done everything right but i cant seem to figure this one out.i am using objectdatasource,a class file and a dataset.xsd file.

[code]...

View 2 Replies

DataSource Controls :: How To Update Database From A DataSet

Apr 1, 2010

I'm fairly new to asp.net and I'm trying get my arms around the data entry and update. I have created a nice data entry formusing a stored procedure. It works well but for a test database, it's pretty much overkill, but worthwell in learning how. I'm going through the ADO.NET quick start tutorial and I've ran across a couple of questions that I've not be able to answer. In my website,I'm wanting to edit the database by creating a separate form that is filled with the existing database information for that particular id. My main question is how to I take the information from the dataset and get it into my form. The code below is not fillingmy form. Not sure what I should be using here:

[Code]....

View 3 Replies

Bulk Update Strongly Typed Dataset?

Mar 7, 2011

is it possible to do a batch update in a strongly typed data set? UpdateBatchSize does not seem to be an option once you create a strongly typed dataset.

View 1 Replies

C# - Cache A Dataset When Database Table Being Update?

Sep 2, 2010

I need to use caching in my project. The problem is that, When page is firstly load ı cached a dataset. Then after after I update or insert a new record in table. my dataset returns from the cached records.

View 2 Replies

DataSource Controls :: How To Update Dataset Back To Database

Jan 23, 2010

I want to reformat one column in database. So that I've used strong typed dataset by drag and drop in VS 2008. When I've already updated all data in dataset, I call method update() of table adapter to perform update my modified data of dataset into database. But it doesn't work.

Below is my code

[Code]....

The RemoveWhiteSpace(string input) is my function to remove special characters from dataset.

View 2 Replies

ADO.NET :: Update Sql Server Related Tables From Dataset (SchemaFill)?

Aug 25, 2010

I would like to update new records that get inserted in DataSet to Sql Server Database. Below is a working example of how to do this if you use "DataAdapter.Fill(ds)".

But i don't want to fill data, becouse i don't need data, i only need shema (I will use this dataset to insert new data to Sql), so i would like to use "DataAdapter.FillSchema(ds)"

[Code]....

View 4 Replies

Web Forms :: How To Add Data To Dataset ,update Data In The Data Set,delete Data From The Dataset

Jun 28, 2010

i have retrieved data from the database and stored in dataset.i have to add an additonal row to it,update the data in data set and delete data from the data set..

View 6 Replies

DataSource Controls :: Bulk Update In Table Using Dataset With Only Differences?

Feb 25, 2010

I select few columns from table A in dataset. Example "EMP_ID","Name","Address","Phone_Number". I want to save data in this dataset into some other table B.

I want to save data from dataset into table B. But i want to have following functionality

1. Before saving a record from dataset to table B if that record if previously present in table B, if yes then check if any value are different, if yes then update that record with the record from dataset, if all the values are same then leave the records as is.

2. If the record is not present in table B then insert it new records in table B from dataset.

Is there any efficient way to implement in .NET C#.

View 1 Replies

Forms Data Controls :: Update One Or Two Columns In A Table Without Using Dataadapter / Dataset?

Mar 14, 2010

1. As per my knowledge we use dataadapters/dataset when we want to deal with the huge amount of column/data. Is there anyway that if I want to update one or two columns in a table without using dataadapter/dataset?

2. There is a way that without clicking a button we can get the data using objectdatasource, I mean to say that there is no vb.net data in the code behind then how to debug if there is not data in vb.net in code behind.

View 6 Replies

DataSource Controls :: Batch Update A Dataset Table Which Data Are From Related Tables?

Jun 8, 2010

My dataset table data is from multiple tables (showing on a gridview),How to update the database tables using batch udpate on clicking submit, if the data is from a signle table, no problem, but I am not sure how to handle if the datais from mulitiple tables? If I have related tables, do I need put them in differet tables in the dataset?

View 6 Replies

Forms Data Controls :: Binding DataSet And GridView, Apply Bulk Rows Edit And Update On GridView

Dec 10, 2010

I have a set of dataset with different column retrieved from DB. I need to present the datasets in one GridView (or other ListView etc...) without specifying the column_header. It should present automaticly since the GridView is bind to the DataSet.

In additional, I want this GridView to handle multiple rows edit and update the dataset, idealy, show data in textboxs in initially.How could I set the GridView to edit_model without hardcode column_header and textboxs in 'itemtemplate' or filed.

How could I achieve the bulk edit and update, so that I can assign 'mydataview1.table' to the dataset.

View 1 Replies

ADO.NET :: FlexCel: Entity Framework -> DataSet / Convert Data In Gridview To A Virtual DataSet?

Mar 31, 2011

In my project I work with Entity Framework (LINQ to ENTITY). I only have ADO.NET Entity Data Model and a DAL (Data Access Layer). I also get the data due a WCFClientService. I have a gridview that needed to be exported in Excel.

FlexCel is a tool for generating Excel files based on a template. The only thing I see in demo's is that they work with DataSets.

Is there a way to convert the data in my gridview to a virtual DataSet?

I've written the following method to get the data:

[Code]....

View 1 Replies

SQL Reporting :: How To Add Stored Procedure Result Set Columns To Typed Dataset And Dataset To RDLC File

Jan 9, 2011

Till now I used to design RDLC file before and assigned typed dataset table columns.Report processing mode is local. But now my stored procedure returns different columns based on condition i.e columns are not fixed every time. Now I need to add that columns to typed dataset and dataset is assigned to RDLC file. So dataset and RDLC files are create dynamically based on stored procedure result set columns.

View 1 Replies

VS 2008 - Uploading Excel Data To Dataset, Then DataSet To SQL Server?

Jan 18, 2010

What I am thinking is this? Is it possible for me to upload the data from an excel file to dataset of my application first, so that the user can view the data in a gridview to review it first, before the user strike the save button, to save it in the database. So, that in case there is a problem, the gridview will high light all the data with an error. So the user can easily pull out the excel and correct the data before saving it in the database.

View 4 Replies

DataSource Controls :: How To Connect Typed DataSet Using DataSet.XSD File

Feb 4, 2010

Today I am facing the problem with Typed DataSet using DataSet.XSd file, And How to fetch, Delete and Update the Database through Dataset.xsd file.

View 9 Replies

DataSource Controls :: How To Copy Required Row In Dataset To A New Dataset

Mar 5, 2010

how do i copy required row in dataset to a new dataset. i have bind a xml into a dataset and i need to display say row 3 to 5 only so i do a for loop but i have encounter problem when trying to copy the rows to a new dataset.

do i have to write the xml to datatable and bind it to dataset and from there copy over ?

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved