我有一个本地数据库(SQL),其中有两个表Contact和Address。 Contact表包含5个地址字段(Address1,Address2,...),它们是链接到Address表主键的外键。我想做的是当我选择(例如使用组合框)联系人姓名时,查看链接到联系人的所有地址。我是C#编程中的一个完整的菜鸟,并且无法让上述事情发生。谁能告诉我如何通过选择联系人姓名来查看地址?
编辑(尝试编码后): 好的,这是我得到了多远。我有两种形式。 FORM 1有一个datagridview,查看按钮,名字和姓氏。在textBox1和textBox2中输入名字和姓氏,然后按下button1会得到一个与名字或姓氏匹配的记录列表。 单击第0列中的按钮可显示联系表。我试图将firstname和lastname传递给textboxes tboFNAME和tboLNAME,但这些文本框中没有任何内容。
在下一阶段,我想将地址ID(外键)传递给联系表,然后将链接数据加载到相应的文本框中。
表格1:
public partial class Form1 : Form
{
//SqlConnection con = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\xxx\Documents\Visual Studio 2013\Projects\xxx\xxx\xxx.mdf;Integrated Security=True;Connect Timeout=30");
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\xxx\Documents\Visual Studio 2013\Projects\xxx\xxx\xxx.mdf;Integrated Security=True;Connect Timeout=30");
dataGridView1.Visible = true;
int varCount;
varCount = 0;
int i = 0;
for (i = 1 ; i < dataGridView1.Rows.Count-1; i++)
{
if (!dataGridView1.Rows[i].IsNewRow)
{
if (dataGridView1[3, i].Value.ToString() == textBox1.Text
|| dataGridView1[5, i].Value.ToString() == textBox2.Text
)
{
dataGridView1.Rows[i].Visible = true;
varCount += 1;
Console.WriteLine(varCount);
int RHeight = dataGridView1.RowTemplate.Height;
int gridHeight = (varCount * RHeight) + RHeight;
dataGridView1.Height = gridHeight;
}
else
{
dataGridView1.Rows[i].Visible = false;
}
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'sAFIREDBDataSet1.contactdata' table. You can move, or remove it, as needed.
this.contactdataTableAdapter1.Fill(this.sAFIREDBDataSet1.contactdata);
this.contactdataTableAdapter.Fill(this.sAFIREDBDataSet.contactdata);
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
var senderGrid = (DataGridView)sender;
String fnameRef = (String)dataGridView1.Rows[e.RowIndex].Cells[3].Value;
String lnameRef = (String)dataGridView1.Rows[e.RowIndex].Cells[5].Value;
if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn &&
e.RowIndex >= 0)
{
Contactsheet myForm = new Contactsheet();
myForm.getFNAME = fnameRef;
myForm.getLNAME = lnameRef;
myForm.Show();
}
}
}
表格2(联系表)
public partial class Contactsheet : Form
{
public Contactsheet()
{
InitializeComponent();
}
public string getFNAME;
public string getLNAME;
private void Contactsheet_Load(object sender, EventArgs e)
{
tboFNAME.Text = getFNAME;
tboLNAME.Text = getLNAME;
}
}
答案 0 :(得分:0)
首先,您必须知道,您必须连接到您的SQL数据库。 我认为最简单的方法是使用Entity Framework(版本5或6)。 创建新的edmx文件,与数据库的新连接以及导入表。
尝试编写一些代码。可能你想通了。如果没有,那么通过您的尝试示例询问更准确的问题:)