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