SQLBindParam 對應
因為 SQLBindParam 在 ODBC 中從未存在,所以無法真正被取代;不過,它仍然代表重複的功能 -驅動程式管理員必須匯出它,因為 ISO 和開放群組相容應用程式將會使用它。 因為 SQLBindParameter 包含 SQLBindParam 的所有功能 , 因此 SQLBindParam 會對應在 SQLBindParameter 之上 (當基礎驅動程式是 ODBC 3.x 驅動程式時)。 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 位資訊 。