Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / Scripting / November 2004

Tip: Looking for answers? Try searching our database.

update a row in datagrid

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
jijo kuruvila - 22 Nov 2004 16:36 GMT
How we can update a row in datagrid by using SQL Query
Steve Seguis [MVP] - 23 Nov 2004 03:59 GMT
How are you populating your datagrid? Are you simply using the
SqlDataAdapter's fill method? If so, I believe you can do something like
this (treat this is pseudocode):

(assuming ds = your dataset associated with your datagrid, adapter is your
SqlDataAdapter)

Dim row As Data.DataRow

' Get the row at index 0
row = ds.Rows(0)

' Change the column named "col1" in row to string "whatever"
row("col1") = "whatever"

' Use adapter to update underlying table.
adapter.Update(ds, "Table")

Hope that helps.

Signature

Steve Seguis - MCSE, Microsoft MVP, SCJP
SCRIPTMATION
Automating the Enterprise
http://www.scriptmation.com

> How we can update a row in datagrid by using SQL Query

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.