how to retrive a TextBox value in to Sql database using C#
windows form application coding

Answers were Sorted based on User's Feedback



how to retrive a TextBox value in to Sql database using C# windows form application coding..

Answer / sathish

how to retreive a TextBox value from Sql database using
C#.net coding

Is This Answer Correct ?    11 Yes 2 No

how to retrive a TextBox value in to Sql database using C# windows form application coding..

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

how to retrive a TextBox value in to Sql database using C# windows form application coding..

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

Post New Answer

More C Sharp Interview Questions

What is difference between private and protected in c#?

0 Answers  


What is the object class in c#?

0 Answers  


What is a string? What are the properties of a string class?

1 Answers  


What is class in oops with example in c#?

0 Answers  


What are the types in c#?

0 Answers  






Is comparable a functional interface?

0 Answers  


How do I declare inout arguments in c#?

0 Answers  


How to declare a property in a class?

0 Answers  


Is functional interface runnable?

0 Answers  


How can we Achieve Late binding in C#.Can any give one example.

5 Answers   Value Labs,


What are the steps to create an assembly and add it to the gac?

0 Answers  


What is private virtual in C#?

0 Answers   CDC,


Categories