上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: https://blog.csdn.net/baishijiangbian/article/details/71271452 阅读全文
posted @ 2018-09-28 11:01 chengeng 阅读(229) 评论(0) 推荐(0)
摘要: 下载地址:https://dev.mysql.com/downloads/ 1. MySQL Community Server 社区版本,开源免费,但不提供官方技术支持。2. MySQL Enterprise Edition 企业版本,需付费,可以试用30天。3. MySQL Cluster 集群版 阅读全文
posted @ 2018-08-25 21:11 chengeng 阅读(122) 评论(0) 推荐(0)
摘要: http://www.runoob.com/w3cnote/vue-js-quickstart.html VUE安装教程 https://segmentfault.com/a/1190000012181572 阅读全文
posted @ 2018-08-24 14:31 chengeng 阅读(158) 评论(0) 推荐(0)
摘要: <script type="text/javascript"> $(function() { //1、ajax提交 $("#ajaxBtn").click(function() { var params = $("#myform").serialize(); $.ajax( { type : "PO 阅读全文
posted @ 2018-08-16 16:44 chengeng 阅读(243) 评论(0) 推荐(0)
摘要: using (var serverManager = new ServerManager()) { foreach(var site in serverManager.Sites) { Console.WriteLine(site.Id); Console.WriteLine(site.Name); 阅读全文
posted @ 2018-08-10 17:01 chengeng 阅读(428) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u012469528/article/details/78920724 阅读全文
posted @ 2018-07-30 15:52 chengeng 阅读(115) 评论(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 阅读(136) 评论(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 阅读(222) 评论(0) 推荐(0)
摘要: automapper 是.net 项目中针对模型之间转换映射的一个很好用的工具,不仅提高了开发的效率还使代码更加简洁,当然也是开源的,https://github.com/AutoMapper,这不多做介绍,详细看,官网下面是介绍它在 .net core 项目中的使用 1. 首先当然先引用 Auto 阅读全文
posted @ 2018-06-28 13:49 chengeng 阅读(199) 评论(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 阅读(1244) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页