execute相信大家都用的用熟了,简写为exec,除了用来执行存储过程,一般都用来执行动态Sql sp_executesql,sql2005中引入的新的系统存储过程,也是用来处理动态sql的, 如: exec sp_executesql @sql, N'@count int out,@id var...
分类:
数据库 时间:
2014-07-16 23:09:15
阅读次数:
268
SOAP已经是属于OUT范畴的技术了,不过因为历史原因,时不时还是会用到它,以前都是用NuSOAP,现在准备试试PHP内置的SOAP扩展。由于文本只打算说说客户端的用法,所以得先找一些能直接用的服务端,Xmethods提供了一些有趣的选择,这里选择其中的服务,功能很简单,就是提供一个IP地址,然后返...
分类:
Web程序 时间:
2014-07-16 23:08:21
阅读次数:
182
简介grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgr...
分类:
系统相关 时间:
2014-07-10 11:37:34
阅读次数:
402
??
第三章Java基本语法
3.1
标准输入输出流
3.1.1 标准输出输入流
System.in:标准输入流
System.out:标准输出流
System.err:标准错误输出流
3.1.2
标准输出流重定位
一般的输出会默认在命令行模式、终端机输出,可是在执行程序时使用将输出结果定位至指定的文件即可。
java HelloJava ...
分类:
编程语言 时间:
2014-06-28 07:54:34
阅读次数:
340
起因,“网络”不太好,“比如铁通的就是不如联通的”
每次执行一边repo sync,十分蛋疼,如果不做full build无需全部下载,着急看某个项目的改动可是repo sync会一个不拉的把所有的AOSP项目拉一遍。
。。。。。。
废话少说,单刀直入
执行方式
git clone https://android.googlesource.com/platform/framewo...
分类:
移动开发 时间:
2014-06-28 07:45:26
阅读次数:
275
This question is not so difficult.
First,my thoughts were we should use a lot of code to find out the loop block,but there is no need to do that .
you just need to get every new position of char in ...
分类:
其他好文 时间:
2014-06-27 23:39:44
阅读次数:
293
本来感觉是一个很小的需求, 后来发现老是 出问题, 使用Theme在 4.0上 操作不是很好用.
后来查阅资料, 需要在finish 后面 和 startActivity 后面添加
overridePendingTransition(R.anim.push_right_in,
R.anim.push_right_out);
...
分类:
其他好文 时间:
2014-06-27 23:33:51
阅读次数:
385
如何利用快捷键输出固定的代码,例如输入sysout,然后马上出现System.out.println();1:window—>preferences—>java—>editor—>templates,在templates中可以设置各种快捷键2:window—>preferences—>在type f...
分类:
系统相关 时间:
2014-06-27 14:02:31
阅读次数:
352
1.当成员变量和局部变量重名时,在方法中使用this时,表示的是该方法所在类中的成员变量。(this是当前对象自己)如:publicclassHello {Strings="Hello";publicHello(String s) {System.out.println("s = "+ s);Sys...
分类:
编程语言 时间:
2014-06-27 12:10:35
阅读次数:
124
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
const int MAX=111111;
int N,E;
int v[MAX];
const int MINF=-210000000;
int in[MAX],out[MAX];
int dp[...
分类:
其他好文 时间:
2014-06-27 10:50:20
阅读次数:
155