摘要:
create table tbUserTow ( Id int primary key, score int default 0, ) create table tbScoreCount ( IdSum int foreign key references tbUserTow(Id),----外键约束 scoreCountId int not n... 阅读全文
posted @ 2012-08-07 16:21
zhcnblog
阅读(480)
评论(0)
推荐(0)
摘要:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex < 0) return; string[] SubCode = null; ... 阅读全文
posted @ 2012-08-07 12:23
zhcnblog
阅读(578)
评论(0)
推荐(0)