数据库的创建 CREATE DATABASE 数据库名称 表的创建 CREATE TABLE 表名称 ( -- not null 设置非空 列名称1 数据类型 not null, 列名称2 数据类型, ....... --设置主键 constraint PK_Reader_ID primary ke ...
分类:
数据库 时间:
2021-04-29 12:01:35
阅读次数:
0
支持office和wps using ExcelDataReader; using OfficeOpenXml; using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; ...
分类:
编程语言 时间:
2021-04-29 11:38:52
阅读次数:
0
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 var GroupList = lissqls.GroupBy(x => x.MatchType).S ...
一些简单的算法与数据结构 稀疏数组 int chessArr1[][] = new int[11][11];//11*11的数组 int sum = 0; chessArr1[1][2] = 1;//设置两个值 chessArr1[2][3] = 2; //打印原数组 for(int[] row : ...
分类:
编程语言 时间:
2021-04-28 11:46:26
阅读次数:
0
C++(异常) int myDevide(int a, int b) { if (b == 0) { //throw - 1;//抛出int类型异常 throw 3.13; } return a / b; } void test01() { int a = 10; int b = 0; try { ...
分类:
编程语言 时间:
2021-04-27 14:40:23
阅读次数:
0
在程序设计中的两个列表组合很简单,只需双层循环就可以。 但在excel中的排列需要写函数,整体来说需要: G列:=IF(ROW()>COUNTA(B:B),INDEX(A:A,INT((ROW()-1)/COUNTA(B:B)+1)),$A$1) H列:=IF(MOD(ROW(),COUNTA(B: ...
分类:
其他好文 时间:
2021-04-27 14:35:20
阅读次数:
0
1:添加Nlog的组件 直接在NuGet里面搜索NLog.Web.AspNetCore 2:然后就是配置服务 public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build() ...
分类:
Web程序 时间:
2021-04-27 14:26:50
阅读次数:
0
满射 A mapping \(T: \mathbb{R}^{n} \rightarrow \mathbb{R}^{m}\) is said to be onto \(\mathbb{R}^{m}\) if each \(\mathbf{b}\) in \(\mathbb{R}^{m}\) is th ...
分类:
其他好文 时间:
2021-04-24 13:56:43
阅读次数:
0
本人采用的MicroPhase的Z7Lite板子,由于以太网控制器是定义在pl端的,所以寄存器地址什么的都不太一样。uboot要用petalinux生成,但是还是希望用源码就能编译,这样没有petalinux那么臃肿,而且编译速度快、配置灵活。我们可以考虑通过petalinux来生成源码与配置文件, ...
分类:
其他好文 时间:
2021-04-24 13:11:14
阅读次数:
0
适配器 GenericServlet * 适配器 (Adapter) - 适配器的作用? 1.我们目前所有的Servlet类都直接实现了javax.servlet.Servlet接口,但是该接口中有些方法是我们暂时不需要的,我们可能只需要编写service方法,直接实现Servlet接口的话,显得代 ...
分类:
编程语言 时间:
2021-04-22 15:19:02
阅读次数:
0