GETDELETED ステートメント
GETDELETED クエリを発行して、指定した期間内にライブデータから削除されたすべてのレコードを取得できます。このクエリは、次の例に示すように、フィルタとしてdatetime 値を許容します。
GETDELETED FROM <table_name> WHERE <search_condition>
<search_condition> ::=
{
<expression> { = | < | <= | > | >= } [ <expression> ]
} [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;";
using (ZohoCRMConnection connection = new ZohoCRMConnection(connectionString)) {
ZohoCRMCommand cmd = new ZohoCRMCommand("GETDELETED FROM Accounts WHERE TimeModified >= '2013-01-01'", connection);
ZohoCRMDataReader rdr = cmd.ExecuteReader();
while (rdr.Read()) {
Console.WriteLine(rdr["Id"].ToString());
}
}
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;"
Using connection As New ZohoCRMConnection(connectionString)
Dim cmd As New ZohoCRMCommand("GETDELETED FROM Accounts WHERE TimeModified >= '2013-01-01'", connection)
Dim rdr As ZohoCRMDataReader = cmd.ExecuteReader()
While rdr.Read()
Console.WriteLine(rdr("Id").ToString())
End While
End Using
Note:次の例に示すように、クエリの前にCACHE コマンドを入れてキャッシュを更新することで、データソースから削除されているすべての値をキャッシュから削除できます。
CACHE GETDELETED FROM [TableName] WHERE TimeModified >= '2013-01-01' AND TimeModified <= '2013-02-01'