Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » SQL Anywhere 服务器 - 编程 » SQL Anywhere 数据访问 API » SQL Anywhere .NET 2.0 API 参考 » iAnywhere.Data.SQLAnywhere 命名空间 (.NET 2.0) » SAParameter 类

 

Direction 属性

获取和设置一个值,该值表示参数是仅输入、仅输出、双向还是存储过程返回值参数。

语法
Visual Basic

Public Overrides Property Direction As ParameterDirection
C#

public override ParameterDirection Direction { get; set; }
属性值

ParameterDirection 值之一。

注释

如果 ParameterDirection 为 output,而执行关联的 SACommand 并未返回值,则 SAParameter 将包含空值。读取最后一个结果集中的最后一行后,将会更新 Output、InputOut 和 ReturnValue 参数。

另请参见