declare @id int,@value nvarchar(100);begin declare
c_test_main cursor fast_forward for select hps_hpId,hps_time from
hospitalPermSupp where hps_...
分类:
数据库 时间:
2014-05-08 14:39:27
阅读次数:
498
tab 命令补全history 先前输入的命令,!+序号重新执行ctrl+l,clear
清屏ctrl+u 删除当前输入ctrl+c 终止命令ctrl+d 退出系统一、命名别名 #alias 查看已有的别名 #alias copy=cp
让copy可以执行cp的命令 #u...
分类:
系统相关 时间:
2014-05-08 09:12:38
阅读次数:
314
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventAr...
分类:
其他好文 时间:
2014-05-08 00:19:02
阅读次数:
326
sql%rowcount用于记录修改的条数,就如你在sqlplus下执行delete
from之后提示已删除xx行一样,这个参数必须要在一个修改语句和commit之间放置,否则你就得不到正确的修改行数。例如:SQL> declare n
number; 2 begin 3 insert into t...
分类:
数据库 时间:
2014-05-07 17:21:07
阅读次数:
386
标题:working copy locked提示:your working copy
appears to be locked. run cleanup to amend the
situation.产生这种情况大多是因为上次svn命令执行失败且被锁定了。如果cleanup没有效果的话只好手动删除锁...
分类:
其他好文 时间:
2014-05-07 10:40:33
阅读次数:
378
一,带函数Pred 1, all(Pred, List) ->
boolean()如果List中的每个元素作为Pred函数的参数执行,结果都返回true,那么all函数返回true,
否则返回false例子:lists:all(fun(E) -> true end,[1,2,3,4]).结果true...
分类:
其他好文 时间:
2014-05-07 01:59:17
阅读次数:
552
G++ 2.91.57,cygnus\cygwin-b20\include\g++\stl_queue.h 完整列表
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its document...
分类:
其他好文 时间:
2014-05-06 22:22:55
阅读次数:
402
右键New->Other->AndroidSampleProject->选择Android4.4.2->选择Support7Demos,finish。会出现编译错误解决如下:1.把这三个文件导入到Eclipse里,这三个是库文件,并且勾选COPY到工作空间里选项如果没有这三个文件,就从这里下载2.导入三个library工程后,mediar..
分类:
其他好文 时间:
2014-05-06 20:34:11
阅读次数:
864
工欲善其事,必先利其器。对IDE的熟练程度,真能影响开发效率 。
先普及下常识,以后有新的收获再补充。
最常用快捷键:
Ctrl+E Delete current line
Ctrl-Shift-Up/D Copy lines up/down
Ctrl-/ Add/remove comment lines
Alt-Shift-F Format select...
分类:
Web程序 时间:
2014-05-06 19:54:58
阅读次数:
486