码迷,mamicode.com
首页 >  
搜索关键字:firmware update    ( 16980个结果
django schema migration
syncdb 仅仅能初始化table(create),不能自己主动update/delete/drop。那么south应运而生。south简单使用方法:安装: pip install South安装完后,增加到INSTALLED_APPS中,并syncdb一下,否则会出现south_migratio...
分类:其他好文   时间:2014-09-30 19:37:40    阅读次数:207
存储过程中使用运行查出的SQL
BEGIN declare u_name varchar(100); declare s_name varchar(100); set u_name='update '; set s_name=concat(' set cur_status =','90'); set @u_table=CONCA....
分类:数据库   时间:2014-09-30 19:16:09    阅读次数:175
SQL Server 触发器
一、触发器定义和创建: 触发器(trigger)是个特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由个事件来触发,比如当对一个表进行操作(insert,delete,update)时就会激活它执行。 触发器可以在查询分析器里创建,也可以在表名上点右键->“所有任务”->“管理触发...
分类:数据库   时间:2014-09-30 12:54:52    阅读次数:291
HDU 1166 敌兵布阵(单点更新线段树)
经典入门题中文题...题意略...数据小 可以单点更新 区间求和 1 #define lson l, m, rt>1;16 build(lson);17 build(rson);18 pushup(rt);19 }20 void update(int p, int add, ...
分类:其他好文   时间:2014-09-29 22:36:31    阅读次数:202
MySQL:ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails
MySQL在删除一张表时出现ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通...
分类:数据库   时间:2014-09-29 20:44:02    阅读次数:250
Python学习-31.Python中集合的一些操作
add方法:1 s = {1,2,3}2 s.add(4)3 print(s)# {1, 2, 3, 4}同list的append方法,若调用s.add(3),则不会有任何影响。这点与C#中的HashSet有区别。update方法:1 s = {1,2,3,4,5}2 s.update({3,5,7...
分类:编程语言   时间:2014-09-29 19:43:21    阅读次数:201
aliyun Ubuntu 14.04 64bit OpenJDK Tomcat7 install
my work environment: aliyun Ubuntu 14.04 64位 first phase:apt-get update    (it is very important,otherwise will cause 404 error) second phase:installation referenced by other website informatio...
分类:其他好文   时间:2014-09-29 19:36:41    阅读次数:287
Git Push问题remote: hooks/update:10 undefined method 'require_relative' for main:Object(NomethodError)
今天在提交代码时遇到到了一个很蛋疼的问题,remote: hooks/update:10 undefined method 'require_relative' for main:Object(NomethodError)...
分类:其他好文   时间:2014-09-29 18:58:11    阅读次数:278
nginx安装--ubuntu
1.准备: copy 安装文件nginx-1.7.5.tar.gz到 /usr/local/ //需准备好Perl 5 兼容正则表达式库(PCRE)与SSL 支持库 sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev sudo apt-get install open...
分类:其他好文   时间:2014-09-29 18:37:51    阅读次数:205
王立平--RemoteView
RemoteView会用在两个地方:一个是在AppWidget,另外一个是在Notification. RemoteView是用来描述一个垮进程显示的view  1,AppWidget---RemoteView  AppWidgetProvider是一个BrocaseReceiver,只是接受到Enable, Update,disale,delete这些message,而真正显示...
分类:其他好文   时间:2014-09-29 17:22:11    阅读次数:168
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!