SQLBindParam 映射

SQLBindParam 不能真正称为已弃用,因为它在 ODBC 中从未存在;但是,它仍然表示重复的功能 - 驱动程序管理器需要导出它,因为符合 ISO 和开放组的应用程序将使用它。 由于 SQLBindParameter 包含 SQLBindParam 的所有功能,因此当基础驱动程序是 ODBC 3.x 驱动程序) 时,SQLBindParam 将映射到 SQLBindParameter (之上。 ODBC 3.x 驱动程序不需要实现 SQLBindParam

备注

SQLBindParam 进行以下调用时:

SQLBindParam(   StatementHandle,    ParameterNumber,    ValueType,    ParameterType,    ColumnSize,    DecimalDigits,    ParameterValuePtr,    StrLen_or_IndPtr)  

驱动程序管理器在驱动程序中调用 SQLBindParameter ,如下所示:

SQLBindParameter(   StatementHandle,    ParameterNumber,    SQL_PARAM_INPUT,    ValueType,    ParameterType,    ColumnSize,    DecimalDigits,    ParameterValuePtr,    BufferLength,    StrLen_or_IndPtr)  

如果应用程序将在 64 位操作系统上运行,请参阅 ODBC 64 位信息。

另请参阅

映射已弃用的函数