Multiuser Lingo Dictionary > Multiuser Lingo Dictionary > deleteApplicationData |
![]() ![]() ![]() |
deleteApplicationData
Syntax
system.DBAdmin.deleteApplicationData [#application: "applicationName
", #attribute:#attributeName
, #text: "String
"]
Description
Multiuser Server command; deletes one or more DBApplicationData objects from the server.
Example
This statement deletes the DBApplicationData object for the movie Poker with an attribute called #dealerName
containing the string Larry:
errCode = gMultiuserInstance.sendNetMessage("system.DBAdmin. deleteApplicationData", "anySubject", [#application: "Poker", #attribute: #dealerName, #text: "Larry"])
The server's response looks like this:
[#errorCode: 0, #recipients: ["userName"], #senderID: "system.DBAdmin.deleteApplicationData", #subject: "anySubject", #content: [#application: "Poker", #attribute: #dealerName, #text: "Larry"], #timeStamp: 193099437]
See also
sendNetMessage()
, createApplicationData
![]() ![]() ![]() |