[Question] View value of a database on a label

I had created a data base on visual c# (i had installed sql server 2005) and now i a few questions:

-How can i change a label text to a database value ? For example:

labe1.tex = "Value on Database X, Table Y, Row 3, collun 1"

-How can i add a new value on a collun?

-How can i remove a value on a collun?

[322 byte] By [kwnds] at [2007-12-31]
# 1
Man, this is a really very basic ADO.net kind of thing, you should read about SqlConnection, SqlCommand, SqlDataReader, SqlDataAdapter, ... etc in general you need to know what is ADO
Bashmohandes at 2007-9-6 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 2
Hi,
check this link: http://samples.gotdotnet.com/quickstart/howto/
There you will find a complete set of samples, take a look at Data and ADO.NET section, it should be useful.

hope it helps.

JoseEscrich at 2007-9-6 > top of Msdn Tech,Visual C#,Visual C# IDE...