摘要:
1.VS2015快捷键使用总结:https://www.cnblogs.com/song125/p/5234546.html 2.C# 中使用Average方法对List集合中相应元素求平均值:https://www.50bit.cn/News/Index/6387.html 3.Oracle中更改 阅读全文
摘要:
解决办法: 1、下载安装System.Text.Encoding.CodePages。 步骤: 右键“依赖项”,点击“管理NuGet程序包” 在“浏览”搜索System.Text.Encoding.CodePages,选择第一个下载安装。 2、 使用“Encoding.RegisterProvide 阅读全文
摘要:
一、数据表有主键但无主键约束名 先删除之前的主键,后添加主键 a. alter table 表名 drop primary key; b. alter table 表名 add primary key(想要更改的字段名称); 二、数据表有主键也有主键约束名 (1)删除已有的主键约束名 a. 若已知主 阅读全文