open-insight/LSL2/STPROC/DELETE_NCR_RECORD_FROM_SQL.txt
Infineon\StieberD 7762b129af pre cutover push
2024-09-04 20:33:41 -07:00

23 lines
593 B
Plaintext

Compile function Delete_NCR_Record_From_SQL(Connection, Key, Record)
/*****************************************************************************\
Deletes the given NCR record from the MSSQL database.
History
-------
09/21/2010 KRF Original Programmer
\*****************************************************************************/
Declare function SQL_Delete, SQL_Format
Ans = ""
// List of key names and their values
Keys = "SEQ":@VM:SQL_Format(Key, "INT")
// NCR
If Ans EQ "" then
Ans = SQL_Delete(Connection, "NCR", Keys)
end
Return Ans