Hello... I'm trying to connect the data that is enter in a textbox to an mysql database table, can someone let me know how to do it in visual web developer 2008, and if is not necessary to write the code, just with some of the options on the toolbox.... thank

Recommended Answers

All 4 Replies

So what is it exactly you are trying to do ?
Do you want to pass Textbox value in SelectQuery or Insert that value of Textbox in the Database ?
Not sure there is a simple toolbox option to deal with MySql database.

It should pass the value of the textbox to the database table... if the is not a simple tool then how can I do it? Thanks for your reply

Show us your code work please. Do you have mysql connector API?

How about using an insert statement which sends the data to the database?

something like this...

("INSERT tablename(column) VALUES ('" + txtbox1.Text + "')");
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.