水的密度和温度的对照表 SQLServer库 if not exists (select 1 from sysobjects where name = ‘basWaterDensityWithTemp’)create table basWaterDensityWithTemp(Id int identity,Temp decimal(10,2) not null unique,TUnit varchar(10) default ‘℃’,Density decimal(13,4) not null,DUnit varchar(10) def
centos7.8 安装python3.8.1,没有pip 转载自https://blog.csdn.net/weixin_39737764/article/details/110471607。安装准备:(cnetos安装python3.6 也可以参考)安装过程中出现这样那样的错误,终于摸索出来成功安装的方法。怕被屏蔽,所以自己发布保存一下。
C# 使用SqlBulk批量插入SQLServer数据库 数据库链接字段参考:Data Source=.;User ID=sa;C# 使用SqlBulk批量插入SQLServer数据库。需要有具体的实体类,然后数据库需要手动建表。实体类属性名和表字段总数、名称必须一致。需要插入的实体类List集合。实体类名称=数据库表名称。
C# 实现java工具类里的(SecureUtil.desede(key.getBytes()).encryptBase64(“******-******) DeSede| DES3 ECB模式加密 // IV(当模式为ECB时,IV无用)/// IV(当模式为ECB时,IV无用)/// DES3 ECB模式加密。/// DES3 ECB模式解密。我对接的是utf8格式的密文;#region ECB模式。/// 明文的byte数组。/// 密文的byte数组。/// 密文的byte数组。/// 明文的byte数组。