一个完整的菜鸟在这里说话。我有一个与 MySQL 交互的 C# 接口。我的问题是我想显示一个 DataGridView,但我想更改列的内容。我想用代码更容易理解。
private void CargaEstados()
{
conexion.Open();
txtNomMun.Focus();
try
{
DataSet ds = new DataSet();
MySqlDataAdapter da = new MySqlDataAdapter("SELECT cveestado, nombre FROM tbestados", conexion);
da.Fill(ds, "FillDropDown");
cbEstado.DisplayMember = "Nombre";
cbEstado.ValueMember = "CveEstado";
cbEstado.DataSource = ds.Tables["FillDropDown"];
conexion.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void CargaDataGridView()
{
conexion.Open();
try
{
cmd.CommandText = "select cvemunicipio, nombre, cveEstado from tbMunicipios";
rd = cmd.ExecuteReader();
while (rd.Read())
{
this.dataGridView1.Rows.Add(rd.GetValue(0), rd.GetValue(1), rd.GetValue(2));
}
conexion.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
在 CargaEstados() 中,我在 Combobox (cbEstado) 中显示名称 (nombre),但我获得了 id (cveestado) {如下所示}。
"insert into tbmunicipios (nombre, cveestado) values ('" + txtNomMun.Text + "', '" + cbEstado.SelectedValue.ToString() + "')";
在 DataGridView 中,我想相反,使用 id,我想显示名称,但我不知道该怎么做。
我的 SQL 表是:
Create DataBase CatalogoMun;
use CatalogoMun;
Create table tbEstados
(
CveEstado int not null,
Nombre varchar (45) not null,
Constraint pkCveEstado Primary Key (CveEstado)
)Engine=Innodb;
Create table tbMunicipios
(
CveMunicipio int not null AUTO_INCREMENT,
Nombre varchar (45) not null,
CveEstado int not null,
Constraint pkCveMunicipio Primary Key (CveMunicipio),
Constraint fkCVeEdo Foreign Key (CveEstado) references tbEstados (CveEstado)
)Engine=Innodb;
例如,如果我在 tbMunicipios 中有 (1, Villahermosa, 27),我想显示 (1, Villahermosa, Tabasco)。
感谢:D