摘要: 示例: html代码如下: 阅读全文
posted @ 2016-12-10 15:36 INnoVation-V2 阅读(2279) 评论(0) 推荐(0)
摘要: 今天在使用mysql时遇到的问题,最后发现问题是,数据类型与外键数据类型不同,改正过来就没有问题了。 阅读全文
posted @ 2016-12-02 15:21 INnoVation-V2 阅读(503) 评论(0) 推荐(0)
摘要: 多半是不小心使用qq管家之类软件加速系统时把SQL Server(MSSSQL)不小心关闭了 解决方法如下(以WIN8为例): 阅读全文
posted @ 2016-11-24 22:19 INnoVation-V2 阅读(1276) 评论(0) 推荐(0)
摘要: 在发布这个配置文件的时候,会发生代码冲突: error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your cha 阅读全文
posted @ 2016-11-22 23:43 INnoVation-V2 阅读(2558) 评论(0) 推荐(0)
摘要: ImportError: No module named MySQLdb 该错误是源于我们没有安装Python连接MySQL所需的MySQLdb库而引起。 python3.5下的解决方法ubuntu系统: 阅读全文
posted @ 2016-11-22 23:42 INnoVation-V2 阅读(234) 评论(0) 推荐(0)
摘要: SQL Server默认使用Windows身份验证的,很多时间就会忘记原来的密码,怎么重新设置用户名密码呢 以SQL Server2013为例,先以windows身份验证登陆进入数据库 然后点击打开数据库中的安全性->用户名,可以选择sa右键属性进行修改,或右键在用户名中新建一个新的用户名密码登录 阅读全文
posted @ 2016-11-20 19:19 INnoVation-V2 阅读(26795) 评论(2) 推荐(0)
摘要: //server import socket, select, re, queue, redis from multiprocessing import Pool, cpu_count from pymongo import MongoClient host = '192.168.1.107' ConnectionList = [] Recv_buffer = 4096000 Client_S... 阅读全文
posted @ 2016-11-17 00:35 INnoVation-V2 阅读(575) 评论(0) 推荐(0)
摘要: 递归规约规则是这样的 program→stmt-sequence stmt-sequence→stmt-sequence;statement|statement statement→if-stmt|repate-stmt|assign-stmt|read-stmt|write-stmt|var-st 阅读全文
posted @ 2016-11-01 19:26 INnoVation-V2 阅读(2363) 评论(0) 推荐(0)
摘要: http://tdm-gcc.tdragon.net/ 阅读全文
posted @ 2016-10-18 21:50 INnoVation-V2 阅读(951) 评论(0) 推荐(0)
摘要: 功能,统计某一目录下所有文件代码行数: 使用方法:打开终端,cd至要统计代码的文件目录下,运行此命令即可。 阅读全文
posted @ 2016-09-10 14:48 INnoVation-V2 阅读(3509) 评论(0) 推荐(0)