473,799 Members | 2,834 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Updating From Text Boxes

Hi, I apologize for a newbie question, but my books/research have yielded me
no examples and my time is now short.

I simply want to update data from text boxes (fields). I'm not using a
datagrid or datalist I found plenty of examples of how to do that and can get
that to work. I simply want to update my databound text boxes.
I'm using visual studios DataAdapters, DataSets and Dataviews. I can insert
to the database utilizing the sqladapter, but I can't figure out how to
update or delete using the records unique id / primary key.

Can someone please direct me to an example or show me sample code.
Preferrably in vb. I'm desperate. :)

Thanks,
enrique
Nov 19 '05 #1
4 1365
So in your button click event you're going to have to write the SQL to do
an update back to your database:

Dim cn as new SqlConnection() ' this assumes you're using SqlServer
cn.ConnectionSt ring = "some connection string (depends upon your DB and security
settings)"
cn.Open()
Dim cmd as SqlCOmmand = cn.CreateComman d()
cmd.CommandText = "update YourTable set x=@x, y=@y where z=@z"
cmd.Parameters. Add("@x", txtBoxX.Text)
cmd.Parameters. Add("@y", txtBoxY.Text)
cmd.Parameters. Add("@z", txtBoxZ.Text)
cmd.ExecuteNonQ uery()
cmd.Dispose() ' technically we need to call Dispose(), as SqlCommand implements
IDisposable
cn.Close() ' Don't forget to close the connection

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi, I apologize for a newbie question, but my books/research have
yielded me no examples and my time is now short.

I simply want to update data from text boxes (fields). I'm not using a
datagrid or datalist I found plenty of examples of how to do that and
can get
that to work. I simply want to update my databound text boxes.
I'm using visual studios DataAdapters, DataSets and Dataviews. I can
insert
to the database utilizing the sqladapter, but I can't figure out how
to
update or delete using the records unique id / primary key.
Can someone please direct me to an example or show me sample code.
Preferrably in vb. I'm desperate. :)

Thanks,
enrique


Nov 19 '05 #2
Brock, Thank you very much.
Although I was looking for a solution that manipulates the disconnected data
and then updates via the sqlDataAdapter, this did the trick and I'm very
grateful.
I'll figure out updating dataTables and dataRows another day. (but if you
have the answer you can shoot it my way :) )

Again, Thanks!
-enrique

"Brock Allen" wrote:
So in your button click event you're going to have to write the SQL to do
an update back to your database:

Dim cn as new SqlConnection() ' this assumes you're using SqlServer
cn.ConnectionSt ring = "some connection string (depends upon your DB and security
settings)"
cn.Open()
Dim cmd as SqlCOmmand = cn.CreateComman d()
cmd.CommandText = "update YourTable set x=@x, y=@y where z=@z"
cmd.Parameters. Add("@x", txtBoxX.Text)
cmd.Parameters. Add("@y", txtBoxY.Text)
cmd.Parameters. Add("@z", txtBoxZ.Text)
cmd.ExecuteNonQ uery()
cmd.Dispose() ' technically we need to call Dispose(), as SqlCommand implements
IDisposable
cn.Close() ' Don't forget to close the connection

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi, I apologize for a newbie question, but my books/research have
yielded me no examples and my time is now short.

I simply want to update data from text boxes (fields). I'm not using a
datagrid or datalist I found plenty of examples of how to do that and
can get
that to work. I simply want to update my databound text boxes.
I'm using visual studios DataAdapters, DataSets and Dataviews. I can
insert
to the database utilizing the sqladapter, but I can't figure out how
to
update or delete using the records unique id / primary key.
Can someone please direct me to an example or show me sample code.
Preferrably in vb. I'm desperate. :)

Thanks,
enrique


Nov 19 '05 #3
How is what I suggested not disconnected data? SqlDataAdpater is just a layer
on SqlConnection and SqlCommand.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Brock, Thank you very much.
Although I was looking for a solution that manipulates the
disconnected data
and then updates via the sqlDataAdapter, this did the trick and I'm
very
grateful.
I'll figure out updating dataTables and dataRows another day. (but if
you
have the answer you can shoot it my way :) )
Again, Thanks!
-enrique
"Brock Allen" wrote:
So in your button click event you're going to have to write the SQL
to do an update back to your database:

Dim cn as new SqlConnection() ' this assumes you're using SqlServer
cn.ConnectionSt ring = "some connection string (depends upon your DB
and security
settings)"
cn.Open()
Dim cmd as SqlCOmmand = cn.CreateComman d()
cmd.CommandText = "update YourTable set x=@x, y=@y where z=@z"
cmd.Parameters. Add("@x", txtBoxX.Text)
cmd.Parameters. Add("@y", txtBoxY.Text)
cmd.Parameters. Add("@z", txtBoxZ.Text)
cmd.ExecuteNonQ uery()
cmd.Dispose() ' technically we need to call Dispose(), as SqlCommand
implements
IDisposable
cn.Close() ' Don't forget to close the connection
-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi, I apologize for a newbie question, but my books/research have
yielded me no examples and my time is now short.

I simply want to update data from text boxes (fields). I'm not using
a
datagrid or datalist I found plenty of examples of how to do that
and
can get
that to work. I simply want to update my databound text boxes.
I'm using visual studios DataAdapters, DataSets and Dataviews. I can
insert
to the database utilizing the sqladapter, but I can't figure out how
to
update or delete using the records unique id / primary key.
Can someone please direct me to an example or show me sample code.
Preferrably in vb. I'm desperate. :)
Thanks,
enrique


Nov 19 '05 #4
Enrique..
Try glancing though this at:-
http://www.solpart.com/techcorner/TC...icle=ADO.NET/e
poch.xml
Hope it helps
Patrick

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1463
by: vanisathish | last post by:
Hi, Currently we are updating the html page contents, some text boxes using javascript. Is it possible to update the same from am activeX dll. And in javascript, will there be any impact on performance if i send large name=value pairs and then using the split function and assign to appropriate text boxes. Thanks
14
2965
by: el_sid | last post by:
Our developers have experienced a problem with updating Web References in Visual Studio.NET 2003. Normally, when a web service class (.asmx) is created, updating the Web Reference will utilise the disco file to update the Corresponding proxy file and reflect the changes made to the web service. However, the results of doing this with out params is that the results seem
0
885
by: stosh259 | last post by:
Hi everyone, Anyone have a generic procedure to updating different types of controls on a form. I have text boxes and switches (booleans). I would like to loop through all the controls and check if the values have changed since the form was loaded. I tried the following below for the text boxes: Private Sub CheckIfChanged(ByVal ctrls As Control.ControlCollection)
0
1732
by: kolalakitty | last post by:
Hopefully someone here can help me/point me in the right direction. I've found tons of references towards making relations, creating rows, saving said rows, using datagrids, databinding objects, and etc in regards to Windows Forms, C#, and Visual Studio .Net 2003. I seem to have run into a bit of a problem however. I'm not using datagrids to show related data, my users wouldn't have any idea how to use them, and they want to see all of...
6
3684
by: Dave | last post by:
I want to put the information that the user selects in my combo boxes into a subform that lies on the same form as the combo boxes. Thanks for your help already, Dave
10
2245
by: chimambo | last post by:
Hi All, I have a little problem. I am retrieving records from a table and I want to update the records using checkboxes. I am able to display the database record quite alright and I have created an array of checkboxes, but my update loop is not working. Here is my code: /*---------This retrieves the records -------------*/ if($row_md) { do{ echo "<tr><td text align='right'>";
9
5015
by: Marianne160 | last post by:
Hi, I know there are various answers to this problem available on the web but none of them seem to work for me. I am using Access 2003 to make a form to look up data from a table. I have so far created three combo boxes that cascade down from Name to Project to Date and when this has been chosen I have four textbox fields I want to display based on this selection. I tried linking the last combo box comboDate to update these fields after...
0
1136
by: adalyc | last post by:
I NEED SOME GUIDENCE WITH UPDATING A COLLECTION OF ITEMS IN A LIST BOX WHEN THE USER CLICKS ON A BUTTON FROM ANOTHER FORM,, i HAVE LISTED THE PROBLEM PARTIALLY. I fIGURED OUT MOST OF THE PROBLEM EXCEPT FOR THE UNDERLINED PART. pLEASE HELP. thIS IS VISUAL BASIC 2005 An airplane has 15 rows (numbered 1 through 15), with six seats (labeled A, B, C, D, E, and F) in each row. . When the agent clicks on one of the text boxes, a second form...
0
1594
by: Code Monkey | last post by:
Suppose I have a windows form (.exe) that has a load of labels and text boxes on it. I enter a number into one of the text boxes and hit the search button. This then launches another thread, which may or may not spawn other threads. What's the best way of updating the user interface?
0
9687
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10231
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7565
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6805
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4141
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.