05 2020 档案
摘要:INSERT 语句中行值表达式的数目超出了 1000 行值的最大允许值。 insert into admUser(username, mobile, age) values(,,),(,,),(,,)来批量导入, 导入数据多出现这样的问题 为了解决这个问题,加一个判断,超过一千条就分批插入。 完整脚
阅读全文
摘要:List<int> selectedRowsIndex = new List<int>(); List<DataGridViewRow> selecteRows = new List<DataGridViewRow>(); foreach(DataGridViewRow r in this.data
阅读全文