using System.Data.SqlClient // namespaceSqlConnection con = new SqlConnection("Your Database Path") //sql connectionNOTE: You can write this in Web.config or app.config and call to your code behindSqlCommand command = new SqlCommand("SELECT QUERY", con); //sql command// Using Data Adapter to bind values from DatabaseSqlAdapter da = new SqlAdapter(command)Dataset ds = new Dataset();da.fill(ds);combobox1.DataSource = ds;// Using Data Reader to bind the values from DatabaseSqlReader rd = command.ExecuteReader();while(rd.Read() == true){ combobox1.items.add(rd["Column Name"].ToString());}