准备: create table t(x int,y int); 用法 1: 修改列的数据类 alter table t modify column y nvarchar(32); 用法2: 给表加一列 alter table t add column z int; 用法3: 删除...
分类:
数据库 时间:
2015-04-01 23:40:40
阅读次数:
303
在学习Django的过程中,看见通过装饰器对view进行装饰,使得view可以提前处理Etag,if-modify-since以及检测请求的类型先谈谈检测请求的类型:我们知道Django的view是不区分请求的方法的,也就是说对于一个相同的URL,无论你是get或是post,你都会进入到一个相同的处...
分类:
Web程序 时间:
2015-04-01 17:07:48
阅读次数:
184
需求
最近项目中这么一个功能,希望app监听android file system,当有文件create/modify/detele时,app收到通知,把对应的变化信息告诉服务器
需求的解决方案
当我们用手机拍照时,会把拍照的文件保存在sdcard的DCIM文件夹下。当文件生成时,我们会接收到create/modify/write_close消息,我们要做的是在write_close...
分类:
移动开发 时间:
2015-03-31 12:54:59
阅读次数:
2539
CentOS中可以通过stat查看文件的元数据[baby@xiaoxiaoabc]$stathoneyFile:`honey‘Size:25 Blocks:8IOBlock:4096regularfileDevice:806h/2054d Inode:131076Links:1Access:(0664/-rw-rw-r--)Uid:(500/baby)Gid:(500/baby)Access:2015-03-3010:27:51.851234105+0800Modify:2015-0..
分类:
数据库 时间:
2015-03-30 19:07:18
阅读次数:
218
练习3-67原文Exercise 3.67. Modify the pairs procedure so that (pairs integers integers) will produce the stream of all pairs of integers (i,j) (without the condition i < j). Hint: You will need to mix in...
分类:
其他好文 时间:
2015-03-29 10:55:03
阅读次数:
160
首先启动sqlplus输入用户名:sqlplus / as sysdba密码空缺如果用户被锁定,记得加上SQL> alter user dbsnmp account unlock;User altered.然后修改密码SQL> alter user dbsnmp identified by dbs....
分类:
数据库 时间:
2015-03-19 21:43:29
阅读次数:
166
在用CI 开发微信公众号的时候出现下面这么个问题,网上看了一圈解决办法是:把报错的文件用editplus另存为utf-8。Severity: WarningMessage: Cannot modify header information - headers already sent by (out...
分类:
Web程序 时间:
2015-03-18 13:58:30
阅读次数:
149
strophe + nginx + openfire got 504 (Gateway Time-out) then 404 (Invalid SID.)modify nginx.conf , add 3 red lines belowlocation /http-bind/ { pr...
分类:
其他好文 时间:
2015-03-17 19:45:11
阅读次数:
330
在创建表时,为列添加not null约束,形式如下:
column_name data_type
[constraint constraint_name] not null
其中,constraint constraint_name 表示为约束指定名称。
也可以为已创建的表中添加not null约束,这时就需要使用alter table... modify语句,形式如下:
alter t...
分类:
数据库 时间:
2015-03-17 10:33:11
阅读次数:
160
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. P...
分类:
其他好文 时间:
2015-03-16 19:12:41
阅读次数:
145