IDbCollationProperties.GetCollationProperties 方法

定义

返回用于连接的排序规则属性。

public:
 bool GetCollationProperties([Runtime::InteropServices::Out] System::String ^ % cultureName, [Runtime::InteropServices::Out] bool % caseSensitive, [Runtime::InteropServices::Out] bool % accentSensitive, [Runtime::InteropServices::Out] bool % kanatypeSensitive, [Runtime::InteropServices::Out] bool % widthSensitive);
public bool GetCollationProperties (out string cultureName, out bool caseSensitive, out bool accentSensitive, out bool kanatypeSensitive, out bool widthSensitive);
abstract member GetCollationProperties : string * bool * bool * bool * bool -> bool
Public Function GetCollationProperties (ByRef cultureName As String, ByRef caseSensitive As Boolean, ByRef accentSensitive As Boolean, ByRef kanatypeSensitive As Boolean, ByRef widthSensitive As Boolean) As Boolean

参数

cultureName
String

要用于排序规则的区域性的名称。

caseSensitive
Boolean

指示排序规则应该区分大小写。

accentSensitive
Boolean

指示排序规则应该区分重音。

kanatypeSensitive
Boolean

指示排序规则应该区分假名类型。

widthSensitive
Boolean

指示排序规则应该区分全半角。

返回

如果可检测当前连接的排序规则属性,则返回 true。

注解

此方法返回用于连接的排序规则属性。 这些属性值可用于请求自动检测到的排序规则属性的报表中。

数据处理扩展插件需要对数据源执行一个或多个查询,以确定默认排序规则属性。 若要从数据扩展插件内执行查询,需要考虑事务。 对于某些托管数据提供程序,如果连接位于事务中,则命令上的事务属性必须显式设置,即使使用 CreateCommand命令创建。 为此,必须在调用事务时BeginTransaction缓存事务Commit,然后释放事务。Rollback

适用于