Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ InTouch HMI

SQLSetParamLong() 函数

  • Last UpdatedSep 24, 2024
  • 1 minute read

SQLSetParamLong() 函数将参数的值设置为 32 位有符号的模拟数字。

类别

SQL

语法

SQLSetParamLong(StatementID, ParameterNumber, Value);

参数

StatementID

确定查询中的 SQL 语句的整数值。

ParameterNumber

整数值,用于确定 StatementID 参数所确定的 SQL 语句中的参数。

32 位带符号模拟数字,要指定为所指定的参数的值。

示例

本例将第一条语句的第三个参数设置为 2.1e9。

SQLSetParamLong(1, 3, 2.1e9);

另请参阅

SQLPrepareStatement()

In This Topic
Related Links