SQLFreeStmt

[DllImport("odbc32.dll", SetLastError = true)]
public static extern int SQLFreeStmt(
   IntPtr hstmt,
   SQLUSMALLINT fOption
);

Microsoft documentation: Link

Last updated