What is the difference between Integrated Security = True and Integrated Security = SSPI?(Integrated Security = True 和 Integrated Security = SSPI 有什么区别?)
问题描述
我有两个使用集成安全性的应用.一个在连接字符串中分配Integrated Security = true
,另一个设置Integrated Security = SSPI
.
I have two apps that use Integrated Security. One assigns Integrated Security = true
in the connection string, and the other sets Integrated Security = SSPI
.
SSPI
和 true
在集成安全上下文中有什么区别?
What is the difference between SSPI
and true
in the context of Integrated Security?
推荐答案
根据 Microsoft 它们是一回事.
According to Microsoft they are the same thing.
当false
时,在连接中指定了用户 ID 和密码.如果为 true,则使用当前的 Windows 帐户凭据进行身份验证.
识别的值是 true
、false
、yes
、no
和 sspi
(强烈推荐),相当于 true
.
When
false
, User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication.
Recognized values aretrue
,false
,yes
,no
, andsspi
(strongly recommended), which is equivalent totrue
.
这篇关于Integrated Security = True 和 Integrated Security = SSPI 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Integrated Security = True 和 Integrated Security = SSPI 有什么区别?
基础教程推荐
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01