Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 719 Bytes

sqlallocstmt-mapping.md

File metadata and controls

27 lines (23 loc) · 719 Bytes
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
SQLAllocStmt Mapping
SQLAllocStmt Mapping
David-Engel
davidengel
01/19/2017
sql
connectivity
reference
mapping deprecated functions [ODBC], SQLAllocStmt
SQLAllocStmt function [ODBC], mapping

SQLAllocStmt Mapping

When an application calls SQLAllocStmt through an ODBC 3.x driver, the call to:

SQLAllocStmt(hdbc, phstmt)  

is mapped to SQLAllocHandle by the Driver Manager in the driver as follows:

SQLAllocHandle(SQL_HANDLE_STMT, InputHandle, OutputHandlePtr)  

with InputHandle set to hdbc and OutputHandlePtr set to phstmt.