上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: https://blog.csdn.net/u012469528/article/details/78920724 阅读全文
posted @ 2018-07-30 15:52 chengeng 阅读(121) 评论(0) 推荐(0)
摘要: public List<T> GetRandomList<T>(List<T> inputList){ //Copy to a array T[] copyArray = new T[inputList.Count]; inputList.CopyTo(copyArray); //Add range 阅读全文
posted @ 2018-07-26 09:14 chengeng 阅读(154) 评论(0) 推荐(0)
摘要: -- 创建序列CREATE SEQUENCE "JPADMIN"."SEQ_JP_BAS_USER_ID" MINVALUE 1 // 最小值MAXVALUE 9999999999999999999999999999 // 最大值INCREMENT BY 1 // 间隔START WITH // 起 阅读全文
posted @ 2018-07-19 10:39 chengeng 阅读(230) 评论(0) 推荐(0)
摘要: automapper 是.net 项目中针对模型之间转换映射的一个很好用的工具,不仅提高了开发的效率还使代码更加简洁,当然也是开源的,https://github.com/AutoMapper,这不多做介绍,详细看,官网下面是介绍它在 .net core 项目中的使用 1. 首先当然先引用 Auto 阅读全文
posted @ 2018-06-28 13:49 chengeng 阅读(206) 评论(0) 推荐(0)
摘要: -- 创建视图 CREATE VIEW VIEW_TABLEASSELECT A.TABLE_NAME, A.column_name 字段名,A.data_type 数据类型,A.data_length 长度,A.data_precision 整数位, A.Data_Scale 小数位,A.null 阅读全文
posted @ 2018-06-08 15:24 chengeng 阅读(1263) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Web;using System.Web.Services; namespace BarCodePrintAp 阅读全文
posted @ 2018-05-24 14:30 chengeng 阅读(647) 评论(0) 推荐(0)
摘要: 1、注意:确认是否已安装 AccessDatabaseEngine.exe 2、可视化按提示操作。 阅读全文
posted @ 2018-05-22 16:59 chengeng 阅读(174) 评论(0) 推荐(0)
摘要: USE[master] GO ALTER DATABASE 要清理的数据库名称 SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE 要清理的数据库名称 SET RECOVERY SIMPLE --简单模式 GO USE 要清理的数据库名称 GO DB 阅读全文
posted @ 2018-05-14 16:04 chengeng 阅读(210) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.IO;using System.Runtime.InteropServices;using System.Text; namespace PrintLabel{ public cla 阅读全文
posted @ 2018-04-19 16:40 chengeng 阅读(366) 评论(0) 推荐(0)
摘要: 斑马打印机客户端GET和POST,以及后端两种打印方式。 背景环境:打印机安装在客户端外网。当用户登录时,通过ajax取服务器数据,返回打印机命令,然后客户端通过JS发送给斑马打印机。 1、使用Get方式打印 1.1 前端页面js代码 jQuery(function () { $("#btnRePr 阅读全文
posted @ 2018-01-29 09:20 chengeng 阅读(1624) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页