1、使用phpmysql导入导出特点:方便但是有限制2、 使用into outfile 和 load
data
infile导入导出备份数据这种方法的好处是,导出的数据可以自己规定格式,并且导出的是纯数据,不存在建表信息,你可以直接导入另外一个同数据库的不同表中,相对于mysqldump比较灵活机动...
分类:
数据库 时间:
2014-05-09 10:43:10
阅读次数:
407
使用asp.net导出Excel有多重方法。经过总结,现推荐一种简易方法,不用再记那些复杂的类名了。code:using
System.Data;using System.IO;//add Microsoft.Excel refference and set operation
right in s...
分类:
Web程序 时间:
2014-05-08 18:16:51
阅读次数:
276
在我们部署redis之前,先了解下redis到底是个啥东西。
redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、
list(链表)、set(集合)和zset(有序集合)。这些数据类型都支持push/pop、add/r...
分类:
Web程序 时间:
2014-05-08 17:58:16
阅读次数:
431
-(void)createImages
{
// Load the alpha image, which is just the same Ship.png image used in the clipping demo
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"Ship.png" ofType:n...
分类:
移动开发 时间:
2014-05-08 16:17:52
阅读次数:
401
同一时间内,只有2个view,index分别为0和1删掉一个后加入一个,保持动态更新if
(viewFlipper.getChildCount() > 1) { viewFlipper.removeViewAt(0); }
viewFlipper.add...
分类:
其他好文 时间:
2014-05-08 12:07:45
阅读次数:
298
--删除外键alter table HelpTextInfo drop constraint
HelpTextInfo_Helptype_FK1--增加外键alter table HelpTextInfo add constraint
HelpTextInfo_Helptype_FK1 fore.....
分类:
数据库 时间:
2014-05-08 11:47:17
阅读次数:
344
如果要获取一张图片原本的高度和宽度,我们一般这样获取var url =
"../images/1.jpg";var img = new Image();img.src = url;img.onload = function(){
//do something.....}当图片从服务器传到本来(也即....
分类:
其他好文 时间:
2014-05-08 11:23:03
阅读次数:
358
说明: 开机启动使用的命令式chkconfig 、防火墙相关的命令式iptables
1、chkconfig 2、iptables 1、chkconfig 参数: --add 新增所指定的系统服务 --del 删除所指定的系统服务 --level
指定该系统服务要在哪个执行等级中开启或关闭 ...
分类:
其他好文 时间:
2014-05-08 10:16:04
阅读次数:
368
今天用VC下编译libevent的http-server示例,却发现用浏览器怎么也打不开网页,跟踪下来,发现运行到evbuffer_add_file
函数就阻塞了起初怀疑是 libevent的evbuffer_add_file函数实现有Bug,所以自己写了个简单的实现来替换 //evbuffe...
分类:
其他好文 时间:
2014-05-08 08:57:17
阅读次数:
441
Given an array of integers, find two numbers
such that they add up to a specific target number.The function twoSum should
return indices of the two nu...
分类:
其他好文 时间:
2014-05-08 06:33:29
阅读次数:
339