23 lines
593 B
Plaintext
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
|