473,413 Members | 1,727 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

adding data to SQL from form textbox, a variable

Hi all,
I know this is easy, just can't seem to get it. I have a windows form, and
a text box, with a value already in it. I need to add that value to a table.
It's just one value, so the entire row doesn't get filled. I have a
connection and all that stuff.

Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPlaceBet.Click
' Dim Myds As Footbet.DStable
' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")

Just looking for the code to pass this value to the DS.

TIA!
Rudy

Nov 21 '05 #1
6 4387
Rudy,

I do not understand you, therefore I give you 2 answers, if you want to add
it to the databaset table, than you have to create an SQL insert command and
than use an SQLcommand.nonquery to update your database, that is all.

http://msdn.microsoft.com/library/de...QueryTopic.asp

When you want to add it to an item in a row in a datatable in a dataset than
it can be
ds.tables("thetable").rows(therownumber)("theItem" ) = "xxxx"

I hope this helps?

Cor

"Rudy" <Ru**@discussions.microsoft.com>
Hi all,
I know this is easy, just can't seem to get it. I have a windows form,
and
a text box, with a value already in it. I need to add that value to a
table.
It's just one value, so the entire row doesn't get filled. I have a
connection and all that stuff.

Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPlaceBet.Click
' Dim Myds As Footbet.DStable
' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")

Just looking for the code to pass this value to the DS.

TIA!
Rudy

Nov 21 '05 #2
Hi Cor,
Thank you for your input. Let me try to explain a little bit better. I have
an answer to a formula that will show up in textbox1. I have 4 textboxs with
the same situation, except the formula is diffrent for each textbox,
therefore, four diffrent answers. In my table i have a column name textbox1,
2, 3, and 4, to match the information to the form. Anyone of the values in
the textbox need to be placed in the table, just 1 or 2 or 3 or all 4 at any
time. When the ENTER button click_event is fired, it needs to take the
values, put them in the approiate coulmns. I'm using SQL by the way for
this. So I'm not sure if I can specify which row it will go into, because it
really doesn't matter. the info will just keep adding to the next row. I
guess the row number would relate to how many times the ENTER click event is
fired. first click, row 1, second click, row 2. In addition, to make things
more interesting, I need to be able to have 5 client computers that has this
setup, going to one SQL server. The number of clicks would actually be total
number from all five clients. Right now I have column in the table to keep
track of which client is enter the values. But I thought about just make
duplicate tables, for the diffrent clients, not sure which would be better.
The max clients I may have is 100. I hope this make sense. Sorry for
rambling on.
Rudy
"Cor Ligthert" wrote:
Rudy,

I do not understand you, therefore I give you 2 answers, if you want to add
it to the databaset table, than you have to create an SQL insert command and
than use an SQLcommand.nonquery to update your database, that is all.

http://msdn.microsoft.com/library/de...QueryTopic.asp

When you want to add it to an item in a row in a datatable in a dataset than
it can be
ds.tables("thetable").rows(therownumber)("theItem" ) = "xxxx"

I hope this helps?

Cor

"Rudy" <Ru**@discussions.microsoft.com>
Hi all,
I know this is easy, just can't seem to get it. I have a windows form,
and
a text box, with a value already in it. I need to add that value to a
table.
It's just one value, so the entire row doesn't get filled. I have a
connection and all that stuff.

Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPlaceBet.Click
' Dim Myds As Footbet.DStable
' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")

Just looking for the code to pass this value to the DS.

TIA!
Rudy


Nov 21 '05 #3
Hello Rudy,

Your right this is actually easy but a little bit of code writing will be
involved.

First, Are you writing these values to existing records or are you creating
a new record based on these formulas.. Its not a big deal if which one your
doing or if your doing both..

You will need the following

SqlConnection
SqlDataAdapter
SqlCommandBuilder
DataSet
DataRow

Exp..

Dim objSqlConn As SqlConnection
Dim objSqlDa As SqlDataAdapter
Dim objSqlCmdB As SqlCommandBuilder
Dim objSqlDs as New DataSet
Dim objSqlRow as DataRow

objSqlConn = New SqlConnection(String of connection)
objSqlConn.Open

Dim strSqlTxt As String = ("Your query statement, usually a SELECT type")
**** Now this can be written in a manner as to return existing records or
where a field = Null so you nothing is returned, but you have a base for
adding new records.****

objSqlDa = New SqlDataAdapter("strSqlTxt", objSqlConn)
objSqlCmdB = New SqlCommandBuilder(objSqlDa)
objSqlDa.Fill(objSqlDs)

*** This next bit of code is for adding a record and filling the values ****

objSqlRow = objSqlDs.Tables(0).NewRow

With objSqlRow
.Item("TextBox1") = TextBox1.Text
.Item("TextBox2") = TextBox2.Text
Ect ect ect

End with

objSqlDs.Tables(0).Rows.Add(objSqlRow)
objSqlDa.Update(objSqlDs)

****Now if you have a query that is searching for an existing record you can
do the samw but with out adding a new record ****
objSqlRow = objSqlDs.Tables(0).Rows(0)

With objSqlRow

.Item("TextBox1") = TextBox1.Text
Ect, ect,ect ect..

End With

objSqlDa.Update(objSqlDs)

Well you might get the idea, if you have any questions feel free to ask...

Best regards,


"Rudy" wrote:
Hi Cor,
Thank you for your input. Let me try to explain a little bit better. I have
an answer to a formula that will show up in textbox1. I have 4 textboxs with
the same situation, except the formula is diffrent for each textbox,
therefore, four diffrent answers. In my table i have a column name textbox1,
2, 3, and 4, to match the information to the form. Anyone of the values in
the textbox need to be placed in the table, just 1 or 2 or 3 or all 4 at any
time. When the ENTER button click_event is fired, it needs to take the
values, put them in the approiate coulmns. I'm using SQL by the way for
this. So I'm not sure if I can specify which row it will go into, because it
really doesn't matter. the info will just keep adding to the next row. I
guess the row number would relate to how many times the ENTER click event is
fired. first click, row 1, second click, row 2. In addition, to make things
more interesting, I need to be able to have 5 client computers that has this
setup, going to one SQL server. The number of clicks would actually be total
number from all five clients. Right now I have column in the table to keep
track of which client is enter the values. But I thought about just make
duplicate tables, for the diffrent clients, not sure which would be better.
The max clients I may have is 100. I hope this make sense. Sorry for
rambling on.
Rudy
"Cor Ligthert" wrote:
Rudy,

I do not understand you, therefore I give you 2 answers, if you want to add
it to the databaset table, than you have to create an SQL insert command and
than use an SQLcommand.nonquery to update your database, that is all.

http://msdn.microsoft.com/library/de...QueryTopic.asp

When you want to add it to an item in a row in a datatable in a dataset than
it can be
ds.tables("thetable").rows(therownumber)("theItem" ) = "xxxx"

I hope this helps?

Cor

"Rudy" <Ru**@discussions.microsoft.com>
Hi all,
I know this is easy, just can't seem to get it. I have a windows form,
and
a text box, with a value already in it. I need to add that value to a
table.
It's just one value, so the entire row doesn't get filled. I have a
connection and all that stuff.

Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPlaceBet.Click
' Dim Myds As Footbet.DStable
' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")

Just looking for the code to pass this value to the DS.

TIA!
Rudy


Nov 21 '05 #4
Thank You DuPont, I will try this tonight and let you know.

Rudy

"DuPont" wrote:
Hello Rudy,

Your right this is actually easy but a little bit of code writing will be
involved.

First, Are you writing these values to existing records or are you creating
a new record based on these formulas.. Its not a big deal if which one your
doing or if your doing both..

You will need the following

SqlConnection
SqlDataAdapter
SqlCommandBuilder
DataSet
DataRow

Exp..

Dim objSqlConn As SqlConnection
Dim objSqlDa As SqlDataAdapter
Dim objSqlCmdB As SqlCommandBuilder
Dim objSqlDs as New DataSet
Dim objSqlRow as DataRow

objSqlConn = New SqlConnection(String of connection)
objSqlConn.Open

Dim strSqlTxt As String = ("Your query statement, usually a SELECT type")
**** Now this can be written in a manner as to return existing records or
where a field = Null so you nothing is returned, but you have a base for
adding new records.****

objSqlDa = New SqlDataAdapter("strSqlTxt", objSqlConn)
objSqlCmdB = New SqlCommandBuilder(objSqlDa)
objSqlDa.Fill(objSqlDs)

*** This next bit of code is for adding a record and filling the values ****

objSqlRow = objSqlDs.Tables(0).NewRow

With objSqlRow
.Item("TextBox1") = TextBox1.Text
.Item("TextBox2") = TextBox2.Text
Ect ect ect

End with

objSqlDs.Tables(0).Rows.Add(objSqlRow)
objSqlDa.Update(objSqlDs)

****Now if you have a query that is searching for an existing record you can
do the samw but with out adding a new record ****
objSqlRow = objSqlDs.Tables(0).Rows(0)

With objSqlRow

.Item("TextBox1") = TextBox1.Text
Ect, ect,ect ect..

End With

objSqlDa.Update(objSqlDs)

Well you might get the idea, if you have any questions feel free to ask...

Best regards,


"Rudy" wrote:
Hi Cor,
Thank you for your input. Let me try to explain a little bit better. I have
an answer to a formula that will show up in textbox1. I have 4 textboxs with
the same situation, except the formula is diffrent for each textbox,
therefore, four diffrent answers. In my table i have a column name textbox1,
2, 3, and 4, to match the information to the form. Anyone of the values in
the textbox need to be placed in the table, just 1 or 2 or 3 or all 4 at any
time. When the ENTER button click_event is fired, it needs to take the
values, put them in the approiate coulmns. I'm using SQL by the way for
this. So I'm not sure if I can specify which row it will go into, because it
really doesn't matter. the info will just keep adding to the next row. I
guess the row number would relate to how many times the ENTER click event is
fired. first click, row 1, second click, row 2. In addition, to make things
more interesting, I need to be able to have 5 client computers that has this
setup, going to one SQL server. The number of clicks would actually be total
number from all five clients. Right now I have column in the table to keep
track of which client is enter the values. But I thought about just make
duplicate tables, for the diffrent clients, not sure which would be better.
The max clients I may have is 100. I hope this make sense. Sorry for
rambling on.
Rudy
"Cor Ligthert" wrote:
Rudy,

I do not understand you, therefore I give you 2 answers, if you want to add
it to the databaset table, than you have to create an SQL insert command and
than use an SQLcommand.nonquery to update your database, that is all.

http://msdn.microsoft.com/library/de...QueryTopic.asp

When you want to add it to an item in a row in a datatable in a dataset than
it can be
ds.tables("thetable").rows(therownumber)("theItem" ) = "xxxx"

I hope this helps?

Cor

"Rudy" <Ru**@discussions.microsoft.com>
> Hi all,
> I know this is easy, just can't seem to get it. I have a windows form,
> and
> a text box, with a value already in it. I need to add that value to a
> table.
> It's just one value, so the entire row doesn't get filled. I have a
> connection and all that stuff.
>
> Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles btnPlaceBet.Click
> ' Dim Myds As Footbet.DStable
> ' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")
>
> Just looking for the code to pass this value to the DS.
>
> TIA!
> Rudy
>

Nov 21 '05 #5
Hi DuPont,
I am getting the following error - Object reference not set to an instance
of an object
This gets stopped at the objSqlRow = objSqlDs.tables(0).NewRow

I wrote the code out like you suggested, i didn't use...
objSqlDa = New SqlDataAdapter("strSqlTxt", objSqlConn)
objSqlCmdB = New SqlCommandBuilder(objSqlDa)
objSqlDa.Fill(objSqlDs) Then I did try it, but got a Null Value error.

I don't understand why I need a SELECT statement, when I'm doing an update.
I guess I'm a little confused.

Thanks for your patcience!

Rudy

"DuPont" wrote:
Hello Rudy,

Your right this is actually easy but a little bit of code writing will be
involved.

First, Are you writing these values to existing records or are you creating
a new record based on these formulas.. Its not a big deal if which one your
doing or if your doing both..

You will need the following

SqlConnection
SqlDataAdapter
SqlCommandBuilder
DataSet
DataRow

Exp..

Dim objSqlConn As SqlConnection
Dim objSqlDa As SqlDataAdapter
Dim objSqlCmdB As SqlCommandBuilder
Dim objSqlDs as New DataSet
Dim objSqlRow as DataRow

objSqlConn = New SqlConnection(String of connection)
objSqlConn.Open

Dim strSqlTxt As String = ("Your query statement, usually a SELECT type")
**** Now this can be written in a manner as to return existing records or
where a field = Null so you nothing is returned, but you have a base for
adding new records.****

objSqlDa = New SqlDataAdapter("strSqlTxt", objSqlConn)
objSqlCmdB = New SqlCommandBuilder(objSqlDa)
objSqlDa.Fill(objSqlDs)

*** This next bit of code is for adding a record and filling the values ****

objSqlRow = objSqlDs.Tables(0).NewRow

With objSqlRow
.Item("TextBox1") = TextBox1.Text
.Item("TextBox2") = TextBox2.Text
Ect ect ect

End with

objSqlDs.Tables(0).Rows.Add(objSqlRow)
objSqlDa.Update(objSqlDs)

****Now if you have a query that is searching for an existing record you can
do the samw but with out adding a new record ****
objSqlRow = objSqlDs.Tables(0).Rows(0)

With objSqlRow

.Item("TextBox1") = TextBox1.Text
Ect, ect,ect ect..

End With

objSqlDa.Update(objSqlDs)

Well you might get the idea, if you have any questions feel free to ask...

Best regards,


"Rudy" wrote:
Hi Cor,
Thank you for your input. Let me try to explain a little bit better. I have
an answer to a formula that will show up in textbox1. I have 4 textboxs with
the same situation, except the formula is diffrent for each textbox,
therefore, four diffrent answers. In my table i have a column name textbox1,
2, 3, and 4, to match the information to the form. Anyone of the values in
the textbox need to be placed in the table, just 1 or 2 or 3 or all 4 at any
time. When the ENTER button click_event is fired, it needs to take the
values, put them in the approiate coulmns. I'm using SQL by the way for
this. So I'm not sure if I can specify which row it will go into, because it
really doesn't matter. the info will just keep adding to the next row. I
guess the row number would relate to how many times the ENTER click event is
fired. first click, row 1, second click, row 2. In addition, to make things
more interesting, I need to be able to have 5 client computers that has this
setup, going to one SQL server. The number of clicks would actually be total
number from all five clients. Right now I have column in the table to keep
track of which client is enter the values. But I thought about just make
duplicate tables, for the diffrent clients, not sure which would be better.
The max clients I may have is 100. I hope this make sense. Sorry for
rambling on.
Rudy
"Cor Ligthert" wrote:
Rudy,

I do not understand you, therefore I give you 2 answers, if you want to add
it to the databaset table, than you have to create an SQL insert command and
than use an SQLcommand.nonquery to update your database, that is all.

http://msdn.microsoft.com/library/de...QueryTopic.asp

When you want to add it to an item in a row in a datatable in a dataset than
it can be
ds.tables("thetable").rows(therownumber)("theItem" ) = "xxxx"

I hope this helps?

Cor

"Rudy" <Ru**@discussions.microsoft.com>
> Hi all,
> I know this is easy, just can't seem to get it. I have a windows form,
> and
> a text box, with a value already in it. I need to add that value to a
> table.
> It's just one value, so the entire row doesn't get filled. I have a
> connection and all that stuff.
>
> Private Sub btnPlaceBet_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles btnPlaceBet.Click
> ' Dim Myds As Footbet.DStable
> ' txbxCPwage.DataBindings.Add("txbxCPwage", Myds, "TableID.Pass")
>
> Just looking for the code to pass this value to the DS.
>
> TIA!
> Rudy
>

Nov 21 '05 #6
Rudy,

A fill is not an update, that is reading the data into the datast
A update is an update.

\\\something like this is a complete reading and updating,
\\\however there is needed a lot of checking etc with this.
\\\and therefore this is almost the most simple format.
dim ds as new datataset
dim SQLtxt as string = Select * from mytable"
Da = New SqlDataAdapter("SqlTxt", Conn)
Da.Fill(Ds)
Cmd = New SqlCommandBuilder(Da)
ds.tables(0).rows(0).item(1)="SeconditemFirstrowCh angedFromTextbox"
da.update(ds)
///

I hope that this helps?

Cor
Nov 21 '05 #7

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

Similar topics

2
by: Ari A | last post by:
I have created two forms in VisualBasic.net. When the user hit a button on the FormB must a message box open showing data from a textbox on FormA. Both forms are open at same time. I have done...
1
by: Shayer | last post by:
Hello I want to add some dynamic control in the win form when i press a button I write the following line of code. But the problem is instead of displaying 10 textbox it display 9 textboxes.But...
5
by: Taryon | last post by:
Consider the Form A calling the Form B. In the Form B i need to access the values of the Form A textbox. Normally i create the textbox as public. BUT in this case, the textbox of Form A will be...
3
by: Jim Heavey | last post by:
Trying to figure out the technique which should be used to add rows to a datagrid. I am thinking that I would want an "Add" button on the footer, but I am not quite sure how to do that. Is that...
4
by: Bas Groeneveld | last post by:
I am developing an ASP.NET application part of which consists of a data entry wizard defined by entries in a data table - ie the controls on each page of the wizard are determined by definitions in...
0
by: Luis Esteban Valencia | last post by:
Hello I wrote a program with code behind in C# to add row into table dynamically and the program worked very well in .Net Framework 1.1. When I run this program in .Net Framework 2.0 beta...
0
by: pd123 | last post by:
I'm new to C# and .net and I'm trying to create a form that will register users in a sql server database. I have the following code but when I run the code I get an error " The name 'Peter' is...
2
by: Tom | last post by:
I have a textbox on my web form were users can enter in 1 name or many names. The form then validates the name against the database. If the name is valid its then saved into a varaible to be used at...
2
by: Hitman | last post by:
Hi Everyone, I have a little bit of problem with my database. I have a textbox ( the name of the textbox is location) on one form and 1 command button. I also made another form with 1 textbox (the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
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,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...
0
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...

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.