【发布时间】:2019-01-08 06:42:21
【问题描述】:
这是我在使用 python/adodbapi 连接到 SQL Server 数据库时遇到的问题。
我们有一个使用以下方法位于不同域中的 SQL Server 测试数据库。
runas /netonly /user:<domain>\<userid> "C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\Ssms.exe"
我能够使用 SQL Server Management Studio 手动登录到 SQL 数据库,但无法以编程方式建立连接。
这是我迄今为止尝试过的:
def query_sql_server_with_windows_authentication(server_name, database_name, username, password, sql_query, output_file_path, delimiter='|', header_flag=True):
conn = adodbapi.connect("PROVIDER=SQLOLEDB;Data Source={0};Database={1}; trusted_connection=yes;UID={2};PWD={3};".format(server_name, database_name, username, password))
cursor = conn.cursor()
cursor.execute(sql_query)
output_file_path = os.path.abspath(output_file_path)
with open(output_file_path,'w') as fout:
if header_flag:
column_names = [item[0] for item in cursor.description]
header = delimiter.join(column_names)
fout.write(header + "\n")
for row in cursor:
columns = [str(column).encode('UTF-8') for column in row]
fout.write(delimiter.join(columns) + "\n")
print("Completed. Returning output file {}".format(output_file_path))
return output_file_path
输出:收到的错误如下:
adodbapi.apibase.OperationalError: (com_error(-2147352567, 'Exception occurred.', (0, u'Microsoft OLE DB Provider for SQL Server', u'Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.', None, 0, -2147467259), None), 'Error opening connection to "PROVIDER=SQLOLEDB;Data Source=<databasehost>,<port>;Database=testdb; trusted_connection=yes;UID=domain\\username;PWD=password;"')
有没有办法解决这个连接问题?
【问题讨论】:
-
使用 SQL Server 身份验证而不是 Windows
-
移除trusted_connection=yes;
-
删除了trusted_connection=yes; (还是同样的问题)。
-
对于 SQL Server 身份验证,我们尚未获得此数据库的 AD 用户 ID/密码。工作场所限制:(
标签: python sql-server adodbapi