[讨论]关于在ASP页面中实现删除数据表和建立表
如下描述:假设现在我已经连好相关数据库,
问题一:
现在我想先作个判断:判断表"xxxx"是否存在,如果存在了,则删除它
那么语句该如何下?
问题二,如果表xxxx不存在了,那么就用sql="select * into xxxx from test where......."将表xxxx建立,然后再查询,这种思想成立吗?实在不想写存储过程,那样子程序转移很麻烦.
求高手指教!
呵呵,来迟了~ function sch(tablename) dim rsSchema set rsSchema=conn.openSchema(20) rsSchema.movefirst Do Until rsSchema.EOF if rsSchema("TABLE_TYPE")="TABLE" then
if rsSchema("TABLE_NAME")=tablename then sch= true exit do else sch= false end if sch= false end if rsSchema.movenext Loop set Conn=nothing end function
调用 schtable=sch("xxxx") if schtable=true then '找到表 end if if schtable=false then '没有找到表 end if