R
rgn
Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中创建sqlserver表格之前如何判断数据库中是否有同名的表格名?有的话则提示是否删除该表格,如果按是则删除该表格然后重新建立该表格,如果按否则不执行。
if exists(select 1 from sysobjects where xtype = 'U' and id = Object_id(N'tablename'))
drop table tablename
go
create table tablename()
这个是在查询分析器中的语句。可是在delphi中怎样写呢?
if exists(select 1 from sysobjects where xtype = 'U' and id = Object_id(N'tablename'))
drop table tablename
go
create table tablename()
这个是在查询分析器中的语句。可是在delphi中怎样写呢?