|
读取Access数据库表名实例 |
作者:Timer(转) 发布时间:2005-03-12 来源:因特耐特
|
kendylan 于 8/30/2001 12:28:41 PM 加贴在 Joy ASP ←返回版面: <% strConn="DBQ="+server.mappath("kendylan.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};" set objConn=server.createobject("Adodb.connection") objConn.open strConn set rsSchema=objConn.openSchema(20) rsSchema.movefirst Do Until rsSchema.EOF if rsSchema("TABLE_TYPE")="TABLE" then response.write rsSchema("TABLE_NAME") & "<br>" end if rsSchema.movenext Loop set objConn=nothing %> |
| |
|
|
|