I would like to know how can I get a value from a cell from a sql database? example table name: login Columns:
Name | Birthday Ina 19 string name = "Select Name from login"; string connection= "connection string path"; SqlConnection connect = new SqlConnection(connection); SqlCommand command = new sqlCommand(name,connect); string get = command;
but I'm sure this is wrong :(
I would like to know how to get the value?
Thanks,
source share