摘要:
我们常常导入数据!mysql有一个高效导入方法,那就是load data infile 下面来看案例说明 基本语法: load data [low_priority] [local] infile 'file_name txt' [replace | ignore]into table tbl_na 阅读全文
摘要:
查看状态:iptables -L -n下面添加对特定端口开放的方法:使用iptables开放如下端口/sbin/iptables -I INPUT -p tcp --dport 8000 -j ACCEPT保存/etc/rc.d/init.d/iptables save重启服务service ipt 阅读全文
摘要:
前段时间写了个自定义通信协议的聊天室(即用\r\n标记字符串,作为一句话),总感觉自己弄的那个协议实现虽然简单,但是拓展性就太差了,只适合于发送聊天的内容,难以包含更多的信息。基于上述几点,于是就开始接触Xmpp协议,并自己定义了一个简单的Xmpp协议用以实现聊天室。 首先有2点要知道: 1.什么是 阅读全文
摘要:
专业版1.6下载地址(CSDN) http://download.csdn.net/source/1388340 版本号:dhtmlxTree v.1.6 Professional edition build 71114 最近开发项目使用到了dhtmlXtree做权限设置,看了网上相关的中文资料很少 阅读全文
摘要:
http://apps.hi.baidu.com/share/detail/37384818 download ADT link http://dl.google.com/android/ADT-0.9.6.zip download SDK link http://dl.google.com/And 阅读全文
摘要:
8.4.4 Model类getModelName() 获取当前Model的名称getTableName() 获取当前Model的数据表名称switchModel(type,vars=array()) 动态切换模型table() 设置当前操作的数据表field() 设置要查询的数据字段where() 阅读全文
摘要:
console.time('querySelector');for(var i=0; i<1000; i++){document.querySelector('body');}console.timeEnd('querySelector');console.time('getElementById' 阅读全文
摘要:
原文链接:http://caibaojian.com/jquery-on.html jQuery on()方法是jQuery官方推荐的一个函数,替换live、bind、delegate、和trigger等方法,使用on方法更加的方便和简单。本文将深入介绍jquery on的各种使用案例。 由此扩展开 阅读全文
摘要:
http://heylinux.com/archives/2367.htmlhttp://blog.csdn.net/ywh147/article/details/8996022 使用过MySQL的同学,刚开始接触最多的莫过于MyISAM表引擎了,这种引擎的数据库会分别创建三个文件:表结构、表索引、 阅读全文
摘要:
cmd命令行切换到C:\wamp\bin\apache\apache2.4.9\bin目录 输入httpd -t命令 错误如下: 1.Syntax error on line 92 of C:/Apache24/conf/extra/httpd-ssl.conf: SSLSessionCache: 阅读全文