收藏 分享(赏)

VB 读取ACCESS数据库中所有表名及指定表的字段名.doc

上传人:dcs1276 文档编号:8514496 上传时间:2019-06-30 格式:DOC 页数:2 大小:25.50KB
下载 相关 举报
VB 读取ACCESS数据库中所有表名及指定表的字段名.doc_第1页
第1页 / 共2页
VB 读取ACCESS数据库中所有表名及指定表的字段名.doc_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

1、1.VB 如何获取 ACCESS 数据库中的所有表名。2.VB 如何获得指定表的所有字段名称?Sub getTableName()Dim RS As ADODB.RecordsetDim CN As ADODB.ConnectionSet CN = New ADODB.ConnectionCN.Open “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Access 数据库名.mdb;Persist Security Info=False“Set RS = CN.OpenSchema(adSchemaTables, Array(Empty, Empty

2、, Empty, Empty)Do Until RS.EOFIf Left(RS!table_name, 4) “MSys“ ThenList1.AddItem RS!table_nameEnd IfRS.MoveNextLoopRS.CloseSet RS = NothingCN.CloseSet CN = NothingEnd SubSub getFieldName()Dim RS As ADODB.RecordsetDim CN As ADODB.ConnectionDim FN As ADODB.FieldSet CN = New ADODB.ConnectionSet RS = Ne

3、w ADODB.RecordsetCN.Open “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=access.mdb;Persist Security Info=False“RS.Open “表名“, CNFor Each FN In RS.FieldsList2.AddItem FN.NameNextRS.CloseSet RS = NothingCN.CloseSet CN = NothingEnd SubVB 读取 ACCESS 数据库中所有表名conn 是 ADODB.ConnectionRS 是 ADODB.RecordSet以上两个变量,只要写个数据库的人都知道set rs=conn.OpenSchema(20)do until rs.eofif ucase(rs(“TABLE_TYPE“) =“TABLE“ thenmsgbox “表:“ & rs(“TABLE_NAME“)end ifrs.movenextloop

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报