03 2017 档案
设计模式记录
摘要:全部模式解说:http://www.runoob.com/design-pattern/design-pattern-tutorial.html 进阶:http://www.cnblogs.com/Terrylee/category/36516.html 委托、观察者: http://www.tra
阅读全文
C#重启IIS
摘要:using System.Diagnostics; using System.ServiceProcess; //ServiceController sc1 = new ServiceController("iisadmin"); //if (sc1.Status == ServiceControl
阅读全文
mongodb学习记录
摘要:由于目标计算机积极拒绝,无法连接--mongoDB连接错误解决办法 http://blog.csdn.net/mevicky/article/details/47312751 https://zhidao.baidu.com/question/1924395806192733907.html 1.在
阅读全文
记录用
摘要:分库分表:http://www.cnblogs.com/zhongxinWang/p/4262650.html 用mongodb做日志记录:http://blog.csdn.net/sandysong28/article/details/6455926
阅读全文
mysql学习记录、安装、卸载、表分区、mysql查询优化
摘要:干净卸载mysql:https://blog.csdn.net/cxy_summer/article/details/70142322mysql 解压缩版安装说明:https://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html 1.ms
阅读全文
MySqlDBHelper
摘要:代码: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Data; using System.Collection
阅读全文
MySql分页存储过程
摘要:分页获取数据 code DELIMITER $$ DROP PROCEDURE IF EXISTS `testDB`.`GetRecordAsPage` $$ CREATE PROCEDURE `testDB`.`GetRecordAsPage` (in tbName varchar(800),in
阅读全文