http://bbs.csdn.net/topics/390334265
分类:
其他好文 时间:
2014-05-08 19:39:03
阅读次数:
240
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create(path+filename); //创建一个请求(获得需要的文件信息)
HttpWebResponse myRes = (HttpWebResponse)myReq.GetRe...
分类:
Web程序 时间:
2014-05-07 17:00:11
阅读次数:
270
scp
把本地文件上传到服务器上
scp -P 1234 config/cert/dev/client.pem dev@xx.xxx.xxx:/srv/rorapps/fgcc/config/cert/production
svn VS git
svn
svn checkout server_url
svn status
svn diff **file
svn...
分类:
其他好文 时间:
2014-05-07 15:54:44
阅读次数:
305
auto listener = EventListenerTouchOneByOne::create();
listener->setSwallowTouches(true);
auto sprite = this->getChildByTag(virTag)->getChildByTag(jumpTag);
listener->onTouchBegan = CC_CALLBACK_2...
分类:
其他好文 时间:
2014-05-07 15:41:12
阅读次数:
279
一、日志文件
1、错误日志:Error Log
内容:MyQL Server 运行过程中所有较为严重的警告和错误信息,以及MySQL Server 每次启动和关闭的详细信息。
路径:默认存放位置在数据目录下
名称:默认文件名以hostname.err 命名
修改:“--log-error[=file_name]”,修改其存放目录和文件名
扩展:FLUSH LOGS...
分类:
数据库 时间:
2014-05-07 15:06:24
阅读次数:
509
SVN :This XML file does not appear to have any
style information associated with it. The document tree is shown
below.地址输入错误。尼玛。。。
分类:
移动开发 时间:
2014-05-07 15:01:54
阅读次数:
1113
这里演示如何在MVC
WEB应用程序如何上传图片到数据库以及如何在WEB页面上显示图片。数据库表对应整个Model类,不单图片数据一个字段,我们从数据表的定义开始:CREATE
TABLE [dbo].[Products] ( [ProductID] INT I...
分类:
数据库 时间:
2014-05-07 14:33:57
阅读次数:
468
首先上header file
#ifndef _SCHED_H
#define _SCHED_H
#define HZ 100
#define NR_TASKS 64
#define TASK_SIZE 0x04000000
#define LIBRARY_SIZE 0x00400000
#if (TASK_SIZE & 0x3fffff)
#error "TASK_...
分类:
系统相关 时间:
2014-05-07 11:56:55
阅读次数:
662
createdatabaseSCon(name=‘SC‘,filename=‘d:\SC.mdf‘)logon(name=‘SC_log‘,filename=‘d:\SC_log.dlf‘)gouseSCgocreatetable商品供应记录(商家姓名nvarchar(20)notnull,商品名称nvarchar(20),商品价格decimal(7,2))insertinto商品供应记录values(‘长虹公司‘,‘彩电‘,4500.00)inse..
分类:
数据库 时间:
2014-05-07 11:34:58
阅读次数:
401
6.7备注
有时有个像Pasca中“记录”和C中“数据体”的数据类型非常有用。集合一些数据项。一个空类定义可以清楚地显示:
class Employee:
pass
john = Employee() # Create an empty employee record
# Fill the fields of the record
john.name = ’John Doe’
joh...
分类:
编程语言 时间:
2014-05-07 11:25:11
阅读次数:
311