sqlfreestmt (odbc32)
Last changed: Steve Waggoner-65.223.32.12

.
Summary
SQLFreeStmt stops processing associated with a specific hstmt, closes any open cursors associated with the hstmt, discards pending results and, optionally, frees all resources associated with a statement handle.

C# Signature:

[DllImport("odbc32.dll",CharSet=CharSet.Ansi)]
static extern short SQLFreeStmt(IntPtr StatementHandle, ushort Option);

VB Signature:

<Runtime.InteropServices.DllImport("odbc32.dll", CharSet:=Runtime.InteropServices.CharSet.Unicode)> _
    Private Shared Function SQLFreeStmt(ByVal statementhandle As IntPtr, ByVal [option] As UShort) As Short
    End Function

User-Defined Types:

// FreeStmt() options
const int  SQL_CLOSE        = 0;
const int  SQL_DROP         = 1;
const int  SQL_UNBIND       = 2;
const int  SQL_RESET_PARAMS = 3;

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
SQLFreeStmt on MSDN