我正在尝试类似的东西:
import pyodbc
cnxn = pyodbc.connect(driver ='{SQL Server}' ,server ='host-MOBLinstance',database ='dbname', trusted_connection = 'yes' )
cursor = cnxn.cursor()
cursor.execute("""SELECT * FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = N'TableName'""")
def checkTableExists(cnxn, TableName):
cursor = cnxn.cursor()
cursor.execute("""
SELECT COUNT(*)
FROM information_schema.tables
WHERE TABLE_NAME = '{0}'
""".format(TableName.replace(''', '''')))
if cursor.fetchone()[0] == 1:
cursor.close()
return True
cursor.close()
return False
if checkTableExists == True:
print ("already")
elif checkTableExists == False:
print ("No")
但是什么都没有发生,有人能帮我吗?我使用的是Micrsoft SQL Server Management Studio 2014 Express版本。该代码将在Python中运行。感谢
使用内置的Cursor.tables方法进行此检查-下面的代码示例假设连接和光标是实例化的
if cursor.tables(table='TableName', tableType='TABLE').fetchone():
print("exists")
else:
print("doesn't exist")
请注意,这在功能上与查询INFORMATION_SCHEMA.TABLES没有什么不同,但允许代码在不同的数据库平台上移植(IMO提高了可读性)。
使用SQL Server Native Client 11.0和SQL Server 2014,调用Cursor.tables
只执行sp_tables系统存储过程。
这里有一个简单的例子:
import pyodbc
conn = pyodbc.connect('DRIVER={FreeTDS};SERVER=yourserver.com;PORT=1433;DATABASE=your_db;UID=your_username;PWD=your_password;TDS_Version=7.2;')
cursor = conn.cursor()
cursor.execute("""
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = N'your_table_name')
BEGIN
SELECT 'Your table exists.' AS result
END
""")
rows = cursor.fetchall()
for row in rows:
print(row.result)
它为我打印了"表存在"。你应该可以根据自己的需要修改它。