В datagridview уже имеются столбцы (наименование, аудитория, инвентарный номер) как заполнить данные из БД в эти столбцы??
private void button3_Click(object sender, EventArgs e)
{
string conS = @"Data Source = localhost\SQLEXPRESS; Initial Catalog = Inventory; Integrated Security = True";
SqlConnection sqlConn = new SqlConnection(conS);
sqlConn.Open();
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM InventoryTable", sqlConn);
SqlCommandBuilder cb = new SqlCommandBuilder(da);
DataSet ds = new DataSet();
da.Fill(ds, "InventoryTable");
InventDataGrid.DataSource = ds.Tables[0];
}