码迷,mamicode.com
首页 > 2015年01月02日 > 全部分享
存储过程的参数
存储过程传参:存储过程的括号里,可以声明参数。 语法是:create procedure p([in/out/inout] 参数名 参数类型 ..),MySQL 存储过程参数如果不显式指定in、out、inout,则默认为inin:传入function的参数create procedure p7(i...
分类:其他好文   时间:2015-01-02 17:22:11    阅读次数:144
openstack 制作镜像以及windows向Linux中通过xshell传文件
慢慢的也要把openstack一些相关的笔记整理上来了之前由于主要是在看horizon 实验室搭建的openstack平台并没有怎么实际的用起来,前几天别的同学要用来测试大数据的相关服务,才把这些内容又好好看了看,稍微体会了一下运维的感觉。同学要用的是ubuntu64位的系统,开始打算自己做,但是网...
分类:Windows程序   时间:2015-01-02 17:21:11    阅读次数:175
关于SOAP
http://www.tutorialspoint.com/soap/index.htmhttp://www.w3.org/TR/2000/NOTE-SOAP-20000508/SOAP协议规范介绍
分类:其他好文   时间:2015-01-02 17:22:17    阅读次数:130
CenOS安装Redis
Linux环境下安装redis
分类:其他好文   时间:2015-01-02 17:21:17    阅读次数:239
hadoop1.2.1伪分布安装指南
1.伪分布式的安装1.1修改ip(1)打开VMWare或者VirtualBox的虚拟网卡(2)在VMWare或者VirtualBox设置网络连接方式为host-only(3)在linux中,修改ip。有上角的图标,右键,选择Edit Connections....****ip必须与windows下虚...
分类:其他好文   时间:2015-01-02 17:20:39    阅读次数:303
(android)解剖contentProvider-001
本文将介绍如何去研究android的四大组件之一contentProvider,由于我暂时会用到contacts和calendars,就介绍这2个内容先. 转载请表明来自于http://my.oschina.net/moziqi/blog 首先我介绍我用的工具先,不如会让读者...
分类:移动开发   时间:2015-01-02 16:17:51    阅读次数:244
OpenCV优化:图像的遍历4种方式
OpenCV优化:图像的遍历4种方式 分类:?算法学习2014-04-13 23:43?1312人阅读?评论(0)?收藏?举报 opencv 目录(?)[+] OpenCV优化:图像的遍历4种方式 我们在实际应用中对图像进行的操作,往往并不是将图像...
分类:其他好文   时间:2015-01-02 16:18:20    阅读次数:255
1147.c
/*题目描述 角谷猜想:? 日本一位中学生发现一个奇妙的“定理”,请角谷教授证明,而教授无能为力,于是产生角谷猜想。 猜想的内容是:任给一个自然数,若为偶数除以2,若为奇数则乘3加1,得到一个新的自然数后按...
分类:其他好文   时间:2015-01-02 16:20:05    阅读次数:184
openhft
http://openhft.net/ http://maven.outofmemory.cn/net.openhft/chronicle-map/2.0.13b/ http://search.maven.org/#search|ga|1|g%3A%22net.openhft%22%20AND%20a%3A%22chronicle-map%22 freechat http://www.osc...
分类:其他好文   时间:2015-01-02 16:19:26    阅读次数:115
[LeetCode]108 Convert Sorted Array to Binary Search Tree
https://oj.leetcode.com/problems/convert-sorted-array-to-binary-search-tree/http://fisherlei.blogspot.com/2013/03/leetcode-convert-sorted-array-to-binary.html/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNod..
分类:其他好文   时间:2015-01-02 16:19:16    阅读次数:151
[LeetCode]109 Convert Sorted List to Binary Search Tree
https://oj.leetcode.com/problems/convert-sorted-list-to-binary-search-tree/http://fisherlei.blogspot.com/2013/01/leetcode-convert-sorted-list-to-binary.htmlhttp://blog.csdn.net/worldwindjp/article/details/39722643/** *Definitionforsingly-linkedlist. *public..
分类:其他好文   时间:2015-01-02 16:17:43    阅读次数:215
[LeetCode]46 Permutations
https://oj.leetcode.com/problems/permutations/http://fisherlei.blogspot.com/2012/12/leetcode-permutations.htmlTODOseesubsetcombination,nextpublicclassSolution{ //Assumesallinputnumbersareunique publicList<List<Integer>>permute(int[]num){ retur..
分类:其他好文   时间:2015-01-02 16:17:16    阅读次数:126
[LeetCode]1 Two Sum
https://oj.leetcode.com/problems/two-sum/http://fisherlei.blogspot.com/2013/03/leetcode-two-sum-solution.htmlpublicclassSolution{ publicint[]twoSum(int[]numbers,inttarget){ //SolutionA //returntwoSum_SortAndTwoPointer(numbers,target); //SolutionB returntw..
分类:其他好文   时间:2015-01-02 16:17:51    阅读次数:144
Java Endorsed
JVM优先加载endorsed目录中的库文件以覆盖它自己的系统库文件。可以使用java.endorsed.dirs系统属性来指定endorsed目录,也可以使用缺省的endorsed目录。参考:http://docs.oracle.com/javase/6/docs/technotes/guides/standards/http://blog.csdn.net/solariceberg/article/de..
分类:编程语言   时间:2015-01-02 16:17:26    阅读次数:185
Linux批量创建用户
1.1相关命令编写脚本过程中主要使用两个命令useradd和passwd,可是使用man命令查看帮助。manpasswd --stdin Thisoptionisusedtoindicatethatpasswdshouldreadthenewpasswordfromstandardinput,whichcanbeapipe. #可以使用标准输入的方式获取用户的新密码,且可以使用管道命令。..
分类:系统相关   时间:2015-01-02 16:16:01    阅读次数:281
[LeetCode]3 Longest Substring Without Repeating Characters
https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/http://fisherlei.blogspot.com/2012/12/leetcode-longest-substring-without.htmlpublicclassSolution{ publicintlengthOfLongestSubstring(Strings){ if(s==null||s.isEmpty()) return0;/..
分类:其他好文   时间:2015-01-02 16:16:01    阅读次数:119
Linux下安装Zenoss
我使用的zenoss版本:3.1.0,系统版本:RHEL6.4安装准备首先,Zenoss的安装需要mysql和snmp等软件的支持,使用yum安装:yum-yinstallmysqlmysql-servernet-snmpnet-snmp-utilsmysql-develmysql安装后,要确保可以使用root用户登进。servicemysqldrestartmysql-uroot-p另外,之后..
分类:系统相关   时间:2015-01-02 16:15:01    阅读次数:207
976条   上一页 1 ... 21 22 23 24 25 26 27 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!