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 |
How can you overload a method?
Describe how a .net application is compiled and executed
What is the difference between mobile application and desktop application?
What is hashset c#?
Can you allow class to be inherited, but prevent the method from being over-ridden?
What is the difference between string and string in c#?
Why constructor is used in c#?
About Virtual functions and their use ?
Which class comes after the SortedList class?
When can a derived class override a base class member?
How do you create user defined data types in c#?
What are the features of c#?