how to retrive a TextBox value in to Sql database using C#
windows form application coding
Answers were Sorted based on User's Feedback
Answer / sathish
how to retreive a TextBox value from Sql database using
C#.net coding
Is This Answer Correct ? | 11 Yes | 2 No |
Answer / shikha kalyan
If you want to store value of a textbox in SQL Server
database then you should use an Insert query:
Let the textbox name be textbox1
Insert into <tablename>(<fieldname>) values('"+textbox1.Text+"')
Eliminate ' if textbox does not contain a string value.
Is This Answer Correct ? | 18 Yes | 11 No |
Answer / shanta
You should pass query as
insert into <tablename>('"+textbox.text+"')
no matter whether it contains number or string type value
Is This Answer Correct ? | 8 Yes | 9 No |
Can we write one page in c# and other in vb in one application ?
Does c# replace c++?
Is c# easier than c++?
Differentiate between object pooling and connection pooling in c#?
Explain the difference between arraylist and array and in c#?
What is datacontract in c#?
What is difference between int and int32 in c#?
What is a protected class in c#?
Where CANNOT Destructors be implemented ?
What is mvc firstordefault?
what is work of continue statement in C#?
Can you inherit multiple abstract classes in c#?