31 lines
816 B
Plaintext
31 lines
816 B
Plaintext
Compile function Delete_LOT_Record_From_SQL(Connection, Key, Record)
|
|
|
|
/*****************************************************************************\
|
|
Deletes the given LOT record from the MSSQL database.
|
|
|
|
History
|
|
-------
|
|
08/15/2025 DJS Original Programmer
|
|
\*****************************************************************************/
|
|
|
|
Declare function SQL_Delete, SQL_Format
|
|
Ans = ""
|
|
|
|
// List of key names and their values
|
|
Keys = "LOT_ID":@VM:SQL_Format(Key, "STR")
|
|
|
|
//-------------------------------------------------------------------------------------------------
|
|
// Multi-valued Fields
|
|
|
|
!! Delete records from MV tables first !!
|
|
|
|
// Currently no multi-value (child) tables
|
|
|
|
// LOT
|
|
If Ans EQ "" then
|
|
Ans = SQL_Delete(Connection, "LOT", Keys)
|
|
end
|
|
|
|
Return Ans
|
|
|