如题,有一个 access2000 数据库,用DAO3.6连接,VB6开发环境,如何在程序了判断一个表(如:表名为test)是否存在
解决立刻给分,不够另开帖子给分
上述问题我已经回答了无数次了
http://access911.net/index.asp?board=4&mode=3&recordid=77FABE1E1ADC
select * from msysobjects where type=1
注:当type=1时,显示此库中所有表的基本情况,包含表名等
当type=5时,显示此库中所有查询语句的基本情况
当type=-32768时,显示此库中所有窗体的基本情况......
select * from mssysobjects where name=tableName and type=1