MySQL 批量添加数据 information_schema...
分类:
数据库 时间:
2015-03-17 12:36:40
阅读次数:
183
1. 字符编码简介 1.1. ASCII ASCII(American Standard Code for Information Interchange),是一种单字节的编码。计算机世界里一开始只有英文,而单字节可以表示256个不同的字符,可以表示所有的英文字符和许多的...
分类:
编程语言 时间:
2015-03-16 08:42:54
阅读次数:
235
chromium启动总是出现警告提示:
[4428:4428:51288848814:WARNING:zygote_host_impl_linux.cc(165)] Running without the SUID sandbox! See http://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
更新...
分类:
其他好文 时间:
2015-03-14 17:01:09
阅读次数:
165
今日在安装完nagios后,通过网页界面点击主机、服务、问题页面时、均报错,报错的内容都一样It appears as though you do not have permission to view information for any of the services you requeste...
分类:
移动开发 时间:
2015-03-11 17:07:42
阅读次数:
210
多态性带来了一个问题,就是如何判断一个变量所实际引用的对象的类型 。 C++使用runtime-type information(RTTI),Java 使用 instanceof 操作符。instanceof 运算符用来判断一个变量所引用的对象的实际类型,注意是它引用的对象的类型,不是变量的类型。请...
分类:
编程语言 时间:
2015-03-11 12:48:54
阅读次数:
192
Android Studio 终于可以正常使用了。我对Google的联网做法实在无语。 Fetching Android SDK component information. 也解决了Gradle: resolve dependancies '_debugCompile' 这个问题。...
分类:
移动开发 时间:
2015-03-11 10:58:39
阅读次数:
273
Mysql:要想知道每个数据库的大小的话,步骤如下:1、进入information_schema数据库(存放了其他的数据库的信息)useinformation_schema;2、查询所有数据的大小:selectconcat(round(sum(data_length/1024/1024),2),‘MB‘)asdatafromtables;3、查看指定数据库的大小:比如查看数..
分类:
数据库 时间:
2015-03-10 01:37:14
阅读次数:
174
1.什么是数据挖掘 数据挖掘是在大型数据存储库中,自动地发现有用信息的过程。数据挖掘技术用来探查大型数据库,发现先前未知的有用模式。数据挖掘还可以预测未来观测结果。 VS 信息检索(information retrieval)2.数据挖掘与知识发现 数据挖掘是数据库中知识发现(knowledg...
分类:
其他好文 时间:
2015-03-09 23:56:58
阅读次数:
196
在controller中如果要调用model中数据或说方法可以这样写$this->load->model('catalog/information');//model中的information类 $data['catae']=$this->model_catalog_information-...
分类:
其他好文 时间:
2015-03-09 16:07:25
阅读次数:
126