Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.67 KB

File metadata and controls

33 lines (28 loc) · 1.67 KB
title SQLFreeStmt | Microsoft Docs
ms.custom
ms.date 11/23/2015
ms.prod sql-server-2016
ms.reviewer
ms.suite
ms.technology
docset-sql-devref
ms.tgt_pltfrm
ms.topic reference
apitype DLLExport
helpviewer_keywords
SQLFreeStmt function
ms.assetid d9666d0b-3446-480e-bf1a-10b01213e411
caps.latest.revision 35
author JennieHubbard
ms.author jhubbard
manager jhubbard

SQLFreeStmt

[!INCLUDESNAC_Deprecated]

Generally
SQLFreeStmt is not recommended in ODBC 3.0 and later. However if the application needs to reuse the statement you should still use SQLFreeStmt with the SQL_RESET_PARAMS and SQL_UNBIND options). You might also use SQLCloseCursor, SQLBindParameter, SQLBindCol, SQLSetDescField, and SQLFreeHandle to replace or duplicate the function of SQLFreeStmt and should use them instead.

In general, it is more efficient to reuse statements than to drop them and allocate new ones. However in some situations, like the reusing of statements, SQLFreeStmt still must be used.

See Also

SQLFreeStmt Function
ODBC API Implementation Details