|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。lotus用户信息怎样导到access中呢。我这里有一个办法,就是先将用户信息引出到文本文件,然后用上面程序输入到access文件中。
<%
本程序用于将从OA中导出的用户信息中的一些信息剖析出来,并存进数据库中。
注重1:到出来的文件必要拷贝复制到另外一个文本文件中。不然得不到准确了局。
注重2:假如用户的该项信息不存在则前往"null"字符串。
2004年8月刘金才
setfso=server.createobject("scripting.filesystemobject")
cFN=server.mappath("tttt.txt")
setfff=fso.getfile(cFN)
setmmm=fff.openastextstream(1)
ifnotmmm.atendofstreamthen
cout=mmm.readall
endif
Setdb=Server.CreateObject("ADODB.Connection")
DBPath=Server.MapPath("oamail.mdb")
constr="driver={MicrosoftAccessDriver(*.mdb)};dbq="&DBPath
db.Openconstr
db.Execute"deletefromoamail"
setrs=server.CreateObject("adodb.recordset")
rs.Open"select*fromoamailwhereidisnull",db,3,2
uuu=split(cout,"$Revisions:")
hhh=0
setmmm=nothing
setfff=nothing
setfso=nothing
fori=0toubound(uuu)
wangrui=uuu(i)
xm=getAinfo(wangrui,"LastName:",vbcr)
un=getAinfo(wangrui,"ShortName:",vbcr)
dw1=getAinfo(wangrui,"FullName:",vbcr)
dw=getAinfo(dw1,"OU=","/O")
ifxm"null"andun"null"anddw"null"then
rs.AddNew
rs("xm")=xm
rs("un")=un
rs("dw")=dw
hhh=hhh+1
endif
next
rs.Update
rs.Close
db.Close
setrs=nothing
setdb=nothing
从一个字符串中截取一个子串
sString:要被截的子串
fStr:子串开首的标记串(不被包括在子串中)
eStr:子串停止的标记串(不被包括在子串中)
functiongetAinfo(sString,fStr,eStr)
tmpStr="null"
ln1=instr(1,sString,fStr)
ifln1>0then
ln2=instr(ln1+len(fStr),sString,eStr)
ifln2>0then
tmpStr=mid(sString,ln1+len(fStr),ln2-ln1-len(fStr))
endif
endif
getAinfo=tmpStr
endfunction
%>
操纵停止!,共截取到<%=hhh%>条信息!
</p>问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时. |
|