摘要: the follow is my work chart recently , and it is made by mindmanager . you can regard it as a example of mindmanager. i think it is coarse ,and it seems that mindmanager is not suit to do work flow, ......
摘要:当安装好jdk和mysql之后,
需要jdbc来联接mysql,
这时候就需要下载mysql-connector-java,目前版本是
mysql-connector-java-3.1.4-beta,可以在www.mysql.com下载得到.
下载来的为mysql-connector-java-3.1.4-beta.tar.gz需要解压,你可以解压到任何目录底下,然后再shell中写入vi......
一个生成随机密码的函数tmp = "0123456789abcdefghijklmnopqrstopwxyz"
tmppwd = roundstr(tmp,8) 【程序编程相关:
我为什么要学习Hibernate?】 【推荐阅读:
程序员的四个境界】 【扩展信息:
Delphi中使用动态SQL的几个问题】
function roundstr(str,num)
s = "" for i = 1 to num
randomize
strlen = len(str)
t = round((rnd * (strlen-1))+1) s = s & mid(str,t,1) next roundstr = s end function
摘要:信息来源:清水飘萍一.简介 win2000计算机启动/关机脚本(startup/shutdown scripts)是win2000的一个新特点.启动脚本是邀请用户登录之前运行的批文件,它的功能类似于win9x和dos中的自动执行批处理文件autoexec.bat;关机脚本是计算机关机之前运行的批文件. 与win2000用户登录/注销脚本(logon/logoff scripts)相比,它们之间的主......