| asp下用OracleInProcServer完成对Oracle的连接和操作 |
| asp下用OracleInProcServer完成对Oracle的连接和操作 | ||
| 作者:Www.7747… 文章来源:Www.7747.Net 更新时间:2007-7-15 11:59:12 【字体:小 大】 | ||
tblname=request("tb") Dim objOraSession,objOraDb Dim strDbUser,strDbPwd,strDbConn Call ConnectDB() Sub ConnectDB() '连接数据库 On Error Resume Next strDbUser = "liujincai" '连接用户名 strDbPwd = "ljc1001" '用户密码 strDbConn = "hp1" '连接字符串 Set objOraSession = Server.CreateObject("OracleInProcServer.XOraSession") Set objOraDB = objOraSession.OpenDatabase(strDbConn,strDbUser & "/" & strDbPwd,0) If Err.Number>0 then Response.Write "错误 :" & err.description & "" response.end End if End Sub Sub EndDB() Set objOraDB = Nothing Set objOraSession = Nothing End Sub Function getTableList(str) Dim strSql,strTmp Dim objRs strSql = "Select at.table_name as tname,au.username as uname from all_tables at,all_users au Where au.username=at.owner order by au.username" Set objRs = objOraDb.DbCreateDynaset(strSql,0) While Not objRs.Eof strA = objRs("uname") & "." & objRs("tname") If str=strA then strTmp = strTmp & "" Else strTmp = strTmp & "" End if objRs.MoveNext Wend Set objRs = Nothing getTableList = strTmp End Function % > <form name=form1 action="aa.asp" method=POST target="main"> <table width="100%" border=0 align="center"> <tr><td> All Tables : <select name="tb"> < %=getTableList(tblName)% > </select> <input type=hidden name="submitc" value="view"> <input type=submit name="submit" value="View Data"> <font color=red>(< %=strDbUser & "/" & strDbPwd & "@" & strDbConn% >)</font> </td></tr> </table> </form> <table border=1 cellspacing=0> |
||
|
||
| 教程录入:YesHack 责任编辑:YesHack | ||
您现在的位置: