创建SQL快照CREATEDATABASEdatabase_snapshot_nameON(NAME=logical_file_name,FILENAME=‘os_file_name‘)[,...n]ASSNAPSHOTOFsource_database_namedatabase_snapshot_name是要将数据库恢复到的快照的名称logical_file_name是引用该文件时在SQLServer中使用的逻辑名称os_file_nam..
分类:
数据库 时间:
2014-05-08 10:54:25
阅读次数:
445
@using(Html.BeginForm("AddNews","NewsMgr",FormMethod.Post,new{enctype="multipart/form-data"}))前台页面上使用form提交,但是HtmlAttribute必须有这个属性enctype="multipart/form-data"否则上传时提交到后台的Request.Files一直为空,count是0.后台页面收到请求后便可以..
分类:
Web程序 时间:
2014-05-08 10:52:02
阅读次数:
765
使用 System.IO 序列
F# 的一个有趣的能力是可以生成延迟序列(lazysequences,我们在第三章中讨论过),它可以用来处理大型文件,避免对文件预先分配的所有内存的开销,这样就能够处理那些太大而装不进 32 位系统的大型文件了。
生成序列非常简单,使用File.OpenText 方法,以文本文件流的形式打开文件。这个方法提供了一个流读取器(stream reader),使...
分类:
其他好文 时间:
2014-05-08 10:46:39
阅读次数:
290
今天用VC下编译libevent的http-server示例,却发现用浏览器怎么也打不开网页,跟踪下来,发现运行到evbuffer_add_file
函数就阻塞了起初怀疑是 libevent的evbuffer_add_file函数实现有Bug,所以自己写了个简单的实现来替换 //evbuffe...
分类:
其他好文 时间:
2014-05-08 08:57:17
阅读次数:
441
利用jQuery的ajax函数就可以实现异步上传图片了。一开始我是想在处理程序中,直接用context.Request.Files来获取页面中的input
file,但是不知道为什么一次获取不了。网上说的,Form中要设置enctype="multipart/form-data"和 method="...
分类:
Web程序 时间:
2014-05-08 07:46:26
阅读次数:
401
Given a sorted array and a target value, return
the index if the target is found. If not, return the index where it would be if
it were inserted in or...
分类:
其他好文 时间:
2014-05-08 07:29:02
阅读次数:
285
Flex读取txt文件中的内容
自动生成的文件
LoadTxt-app.xml:
<!-- Adobe AIR Application Descriptor File Template.
Specifies parameters for identifying, installing, and launching AIR applications.
xmlns - ...
分类:
其他好文 时间:
2014-05-08 03:58:40
阅读次数:
261
一、specialpermissionsforexecutables1.specialpermissionsforexecutables:-suid:commandrunwithpermissionsoftheownerofthecommand,notexecutorofthecommand-sgid:commandrunswithgroupaffiliationofthegroupofthecommandeg:file:usergroupothersuidsgid二、specialpermissio..
分类:
系统相关 时间:
2014-05-08 03:04:17
阅读次数:
574
文件系统管理重新创建文件系统会损坏原有文件。创建某个分区上的文件系统使用mkfs:makefilesystem-tFSTYPE指定文件系统类型mkfs命令比较特殊[root@www~]#whichmkfs.ext2/sbin/mkfs.ext2[root@www~]#ls-l/sbin/mkfs.ext2-rwxr-xr-x3rootroot47312Sep42009/sbin/mkfs.ext2所以:..
分类:
系统相关 时间:
2014-05-08 02:33:29
阅读次数:
406
Flex读取txt文件中的内容
1、具体错误如下
2、错误原因
读取文件不存在
var file:File = new File(File.applicationDirectory.nativePath+"/phone.txt");
3、解决办法
将文件导入进去...
分类:
其他好文 时间:
2014-05-08 02:13:59
阅读次数:
236