01 2011 档案

摘要:Below is a very smart tool for java *.class(including *.jar) decompiling:http://java.decompiler.free.fr/?q=jdguilocal:/Files/kelin1314/jd-gui-0.3.3.windows.zip 阅读全文
posted @ 2011-01-26 15:03 kelin1314 阅读(284) 评论(0) 推荐(0)
摘要:1 charset of database server2 charset of database client3 charset of page1、字符集的一些基本知识 字符集有很多种,最初的字符集是ASCII,由于ASCII支持的字符很有限,因此随后又出现了很多的编码方案,这些编码方案大部分都是包括了ASCII的。EBCDIC编码是另一个比较基本的编码,它的部分字符采用了和ASCII不同的编码值,因此两者是不兼容的基本编码方案。采用EBCDIC编码的比较少,目前主要是IBM 的系统采用,如AS400及S390系统,大部分的系统都是基于ASCII编码的。 由于亚洲国家的字符集相对复杂一些,因 阅读全文
posted @ 2011-01-21 11:37 kelin1314 阅读(1350) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2011-01-18 22:44 kelin1314 阅读(1) 评论(0) 推荐(0)
摘要:pb中数据窗口函数小结 一、连接数据库 连接数据库也就是指定事务对象。PowerBuilder提供了两个函数:SetTrans()和SetTransObject()。 语法格式: dw_control.SetTrans(TransactionObject) dw_control.SetTransObject(TransactionObject) 其中,dw_control是所使用的数据窗口控件,transactionObject是所要指定的事务对象。 这两个函数有一个重要的区别就是在使用SetTrans()函数时,用户不需做任何数据初始化或事务对象初始化工作。用户只需要在这里填充一个事务对象 阅读全文
posted @ 2011-01-13 00:10 kelin1314 阅读(2189) 评论(0) 推荐(1)
摘要:http://219.219.90.5/zm/%E8%AF%BE%E7%A8%8B%E8%AF%BE%E4%BB%B6/%E3%80%8APowerBuilder%E5%9B%BE%E8%A7%A3%E6%95%99%E7%A8%8B%E3%80%8B/index.htmhttp://www.bccn.net/Article/sjk/pb/jc/(编程中国) 阅读全文
posted @ 2011-01-11 23:39 kelin1314 阅读(2108) 评论(1) 推荐(0)
摘要:http://linux.about.com/library/cmd/blcmdln_expr.htmNAMEexpr - Evaluate an expression SYNOPSISexpr arg ?arg arg ...? DESCRIPTIONConcatenates arg's (adding separator spaces between them), evaluates the result as a Tcl expression, and returns the value. The operators permitted in Tcl expressions ar 阅读全文
posted @ 2011-01-11 16:31 kelin1314 阅读(996) 评论(0) 推荐(0)
摘要:http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/ldr_concepts.htm#SUTIL003Beloware the main steps of an example:step 1: prepare the test table(you arerecommend to make a sql file to store the ddl to create a table) create tableSAMPLE ( NAME INTEGER)step 2: prepare data files and contro 阅读全文
posted @ 2011-01-11 11:12 kelin1314 阅读(237) 评论(0) 推荐(0)
摘要:Linux internal commands Linux commands Linux commands are nothing but the text written in the shell or terminal that the terminal understands. Linux commands usually performs certain specific operations such as editing a text file, making, removing and moving a directory etc. The shell or the term.. 阅读全文
posted @ 2011-01-11 10:59 kelin1314 阅读(273) 评论(0) 推荐(0)
摘要:1、先解除root锁定,为root用户设置密码 打开终端输入:sudo passwd rootPassword: <--- 输入你当前用户的密码 Enter new UNIX password: <--- 新的Root用户密码 Retype new UNIX password: <--- 重复新的Root用户密码 passwd:已成功更新密码 2、更改登陆,允许root登录 打开 系统>系统管理>登录窗口) 点“安全”选项页,选择“允许本地管理员登录”。 3、注销当前用户,以root登陆 change user:su [username]query user:whoami 阅读全文
posted @ 2011-01-11 10:57 kelin1314 阅读(467) 评论(0) 推荐(0)
摘要:http://dos.rsvs.net/DOSPAGE/DOS_IC.HTM (dos internal command)http://www.computerhope.com/jargon/e/extecomm.htm(dos external command) 阅读全文
posted @ 2011-01-11 10:32 kelin1314 阅读(179) 评论(0) 推荐(0)
摘要:http://www.panix.com/~elflord/unix/grep.htmlWhy grep ?Back to top grep is not only one of the most useful commands, but also, mastery of grep opens the gates to mastery of other tools such as awk , sed and perl . So what does it do ?Back to top grep basically searches. More precisely, grep foo file 阅读全文
posted @ 2011-01-11 10:11 kelin1314 阅读(370) 评论(0) 推荐(0)
摘要:http://beyondjhf-2008.javaeye.com/blog/579487 阅读全文
posted @ 2011-01-10 17:45 kelin1314 阅读(148) 评论(0) 推荐(0)
摘要:指令名称:chmod使用权限:所有使用者使用方式:chmod[-cfvR][--help][--version]modefile...说明:Linux/Unix的档案调用权限分为三级:档案拥有者、群组、其他。利用chmod可以藉以控制档案如何被他人所调用。参数:mode:权限设定字串,格式如下:[ugoa...][[+-=][rwxX]...][,...],其中u表示该档案的拥有者,g表示与该档案的拥有者属于同一个群体(group)者,o表示其他以外的人,a表示这三者皆是。+表示增加权限、-表示取消权限、=表示唯一设定权限。r表示可读取,w表示可写入,x表示可执行,X表示只有当该档案是个子目录 阅读全文
posted @ 2011-01-10 15:24 kelin1314 阅读(648) 评论(0) 推荐(0)
摘要:标准输入和输出重定向外壳和许多UNIX命令采取其输入从标准输入(stdin),写输出到标准输出(stdout),写错误输出到标准错误(stderr)。默认情况下,标准输入连接到终端键盘和标准输出和错误到终端屏幕。的,显示方式结束的终端文件在默认的标准输入,通常是<Ctrl-d>。本人重定向的输入/输出,例如一个文件,是通过指定的目的地的目的地所需的命令行使用重定向元字符后跟。C Shell的家庭为C shell的重定向形式家庭的有:字符行动>重定向标准输出>&重定向标准输出和标准错误<重定向标准输入>!重定向标准输出;覆盖文件,如果它存在>&a 阅读全文
posted @ 2011-01-10 15:23 kelin1314 阅读(1204) 评论(0) 推荐(0)
摘要:绑定变量是为了减少解析的,比如你有个语句这样 select aaa,bbb from ccc where ddd=eee; 如果经常通过改变eee这个谓词赋值来查询,像如下 select aaa,bbb from ccc where ddd=fff; select aaa,bbb from ccc where ddd=ggg; select aaa,bbb from ccc where ddd=h... 阅读全文
posted @ 2011-01-09 21:40 kelin1314 阅读(659) 评论(0) 推荐(0)
摘要:http://bbs.fengniao.com/forum/(峰鸟) 阅读全文
posted @ 2011-01-06 22:42 kelin1314 阅读(182) 评论(0) 推荐(0)
摘要:http://en.wikipedia.org/wiki/Unix_directory_structure(unix directory)Unix directory structureFrom Wikipedia, the free encyclopediaInUnixandUnix-likeoperating systems, theUnix directory structureis a convention forfilesystemlayout.Several attempts exist to standardize the Unix filesystem layout, such 阅读全文
posted @ 2011-01-06 18:05 kelin1314 阅读(301) 评论(0) 推荐(0)
摘要:http://www.aka.org.cn/Lectures/002/Lecture-2.1.2/index.html 阅读全文
posted @ 2011-01-06 14:32 kelin1314 阅读(141) 评论(0) 推荐(0)
摘要:unix manul pages(recommended):http://www.bigbiz.com/cgi-bin/manpage(Ftp learn by sample)http://dwardmac.pitzer.edu/dward/classes/skills/ftp/unixftp.html(ITS Quick Start)http://www.albany.edu/its/quickstarts/qs-ftp.htmlHow to use UNIX File Transfer Protocol (FTP) :http://dwardmac.pitzer.edu/dward/cla 阅读全文
posted @ 2011-01-05 11:42 kelin1314 阅读(417) 评论(0) 推荐(0)
摘要:wc -l test.txt##返回的比实际的总少一行 阅读全文
posted @ 2011-01-05 10:56 kelin1314 阅读(185) 评论(0) 推荐(0)