欢迎光临
我们一直在努力

在asp中通过oo4o连接oracle数据库的例子_asp技巧

建站超值云服务器,限时71元/月

下面这段代码能够显示,当前用户所能够看到的所有的用户和表,有兴趣的, 可以把每个表的内容加上


<%
Dim objOraSession,objOraDb
Dim strDbUser,strDbPwd,strDbConn
Call ConnectDB()
Sub ConnectDB()
 连接数据库
 On Error Resume Next
 strDbUser  = “tmpUser”     连接用户名
 strDbPwd  = “rt45ps1w”    用户密码
 strDbConn = “sun450”       连接字符串
 Set objOraSession  = Server.CreateObject(“OracleInProcServer.XOraSession”)
 Set objOraDB        = objOraSession.OpenDatabase(strDbConn,strDbUser & “/” & strDbPwd,0)
 If Err.Number>0 then
  Response.Write “<font color=red>错误 :” & err.description & “</font>”
  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 & “<option selected>” & strA & “</option>”
   Else
    strTmp = strTmp & “<option>” & strA & “</option>”
   End if
   objRs.MoveNext
  Wend
 Set objRs = Nothing
 getTableList = strTmp
End Function
%>
<form name=form1 action=”index.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>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在asp中通过oo4o连接oracle数据库的例子_asp技巧
分享到: 更多 (0)

相关推荐

  • 暂无文章