摘要:
绿色安装实施步骤地址: https://blog.csdn.net/qq_39135287/article/details/82117234 简略步骤: 1.到官网下载绿色安装包(https://dev.mysql.com/downloads/mysql/) 2.解压mysql包到指定的位置并新建d 阅读全文
摘要:
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.databind.DatabindContext; import com.fasterxml.jackson.databind.Jav 阅读全文
摘要:
Func与Action委托泛型介绍 .Net 3.5之后,微软推出了Func与Action泛型委托。进一步简化了委托的定义。 Action委托主要的表现形式如下: public delegate void Action(); public delegate void... 阅读全文
摘要:
在.NET中的反射也可以实现从对象的外部来了解对象(或程序集)内部结构的功能,哪怕你不知道这个对象(或程序集)是个什么东西,另外.NET中的反射还可以运态创建出对象并执行它其中的方法。反射是.NET中的重要机制,通过反射,可以在运行时获得程序或程序集中每一个类型(包括类、结构、委托、接口和枚举等)的... 阅读全文
摘要:
using System;using System.Data;using System.Reflection;using System.Data.Common;using System.Data.SqlClient;using System.Collections.Generic;namespace... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO.Ports;using System.Runtime.CompilerServices;using Sy... 阅读全文
摘要:
public class ExcelReport {//Excel 文件修改要引用COM组件Microsoft Excel 11.0 Object Library//using Microsoft.Office.Interop.Excel;/// /// 单元格修改 /// /// excel路... 阅读全文
摘要:
ADO.NET命名规范数据类型数据类型简写标准命名举例ConnectionconconNorthwindCommandcmdcmdReturnProductsParameterparmparmProductIDDataAdapterdaddadProductsDataReaderdtrdtrProductsDataSetdstdstNorthWindDataTabledtbldtblProductDataRowdrowdrowRow98DataColumndcoldcolProductIDDataRelationdreldrelMasterDetailDataViewdvwdvwFiltere 阅读全文
摘要:
bitbooltinyintbytesmallintshortintintbigintlongrealfloatfloatdoublemoneydecimaldatetimeDateTimecharstringvarcharstringncharstringnvarcharstringtextstringntextstringimagebyte[]binarybyte[]uniqueidentifierGuid/ SqlDbType转换为C#数据类型public static Type SqlType2CsharpType(SqlDbType sqlType) { switch (sqlTyp 阅读全文