码迷,mamicode.com
首页 >  
搜索关键字:firmware update    ( 16980个结果
docker port 2376
I have had this issue as well. I believe it‘s because of a recent update to either boot2docker or Virtualbox. In any case, the solution is to just to temporarily route until it is fixed upstream. F...
分类:其他好文   时间:2014-11-25 23:59:51    阅读次数:497
java.io.IOException: ORA-22920: 未锁定含有 LOB 值的行
究其原因是因为没有锁定要更新的行记录。将 mysql="select filebody from filelist where filename=?"中的SQL语句加上 for update即可。如:mysql="select filebody from filelist where filena....
分类:编程语言   时间:2014-11-25 22:49:49    阅读次数:294
Node.js Ubuntu下安装
安装 Node.js依次执行以下指令:sudo apt-get update sudo apt-get install -y python-software-properties python g++ make sudo add-apt-repository ppa:chris-lea/node.....
分类:Web程序   时间:2014-11-25 20:26:07    阅读次数:219
eclipse的编辑器样式风格设置
1、Help->InstallNewSoftware->Workwith:UpdateSite-http://eclipse-color-theme.github.com/update->add->名字设置->OK->selectall->next->等待几分钟->next->finesh2、重启eclipse->Window->Preferences->General->Apperance->..
分类:系统相关   时间:2014-11-25 18:50:14    阅读次数:137
Change Dropwizard default ports
You can update the ports in your yaml configuration file: http: ??port:?9000 ??adminPort:?9001 See http://dropwizard.codahale.com/manual/core/#configuration-defaults for more information. EDI...
分类:其他好文   时间:2014-11-25 14:40:23    阅读次数:177
ubuntu 14.04 安装chrome及给chromium 安装 flash player
在网上尝试很多方法,大多数是拷贝 libflashplayer.so,尝试之后,没有用。 最后还是从大牛处找到了办法,其实就是chromium提示的安装方法,不过chromium推荐用软件更新器做,远没有命令方便。 简单点说,打开terminal: sudo apt-get install pepperflashplugin-nonfree sudo update-pepperflashp...
分类:系统相关   时间:2014-11-25 14:27:25    阅读次数:198
thinkphp添加数据 add()方法
thinkphpz内置的add()方法用于向数据库表添加数据,相当于SQL中的INSERT INTO 行为添加数据 add 方法是 CURD(Create,Update,Read,Delete / 创建,修改,读取,删除)中的 Create 的实现,ThinkPHP 支持以普通数组方式和面向对象方式...
分类:Web程序   时间:2014-11-25 12:26:54    阅读次数:452
ORA-06547: INSERT, UPDATE 或 DELETE 语句必须使用 RETURNING 子句
产生这个错误的原因: returning into子句作用于insert,update,delete,上而select则不行,应该用into。 报错的存储如下: create or replace procedure p_stu_info(s_id number, s_name varchar2) is v_name varchar2(10); v_age number...
分类:其他好文   时间:2014-11-25 10:57:04    阅读次数:322
new ubuntu 12.04 server安装oracle11gr2
1、官方安装文档如下链接 http://www.techienote.com/tag/oracle-database-11g-r2-on-ubuntu-12-04 2、安装VNC服务,图形安装 请注意: 如果在安装中部分软件无法安装成功,说明软件源中缺包,先尝试使用命令#apt-get update更新软件源后尝试安装。如果还是不行,需要更换软件源。更换步骤: a)输...
分类:数据库   时间:2014-11-25 00:19:55    阅读次数:323
Implement strStr()——字符串中第一次出现给定字符串的位置
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41346969 Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Update (2014-11-02): The signature of the function...
分类:其他好文   时间:2014-11-24 22:37:49    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!