SQL Delete Statement Syntax and Usage
Note
This feature is only available in NCache Enterprise Edition.
Similar to SQL, NCache lets you delete the data from the cache based on the given criteria. The delete statement is executed through ExecuteNonQuery which returns the number of the deleted rows as a result of the query executed.
Note
The Delete
statement can only be executed through ExecuteNonQuery
:
Pre-Requisites
- Install the following NuGet packages:
- Indexing for searchable objects and their attributes need to be configured first as explained in Configuring Query Indexes in Administrator's Guide.
- Include the following namespaces in your application:
Alachisoft.NCache.Client
Alachisoft.NCache.Runtime.Caching
Alachisoft.NCache.Client.Services
Alachisoft.NCache.Runtime.Exceptions
- The application must be connected to cache before performing the operation.
- Cache must be running.
- For API details, refer to: ICache, ICacheReader, ExecuteReader, SearchService, QueryCommand.
- Make sure that the data being added is serializable.
- To ensure the operation is fail safe, it is recommended to handle any potential exceptions within your application, as explained in Handling Failures.
- To handle any unseen exceptions, refer to the Troubleshooting section.
Syntax
Here's an example which deletes all the products from the cache with the UnitsInStock equals to 0 using ExecuteNonQuery
.
try
{
// Pre-condition: Cache is already connected
// Items are already present in the cache
// Provide Fully Qualified Name (FQN) of your custom class
string query = "DELETE FROM FQN.Product WHERE UnitsInStock = 0";
// Use QueryCommand for query execution
var queryCommand = new QueryCommand(query);
// Execute query
cache.SearchService.ExecuteNonQuery(queryCommand);
}
catch (OperationFailedException ex)
{
if (ex.ErrorCode == NCacheErrorCodes.INCORRECT_FORMAT)
{
// Make sure that the query format is correct
}
else
{
// Exception can occur due to:
// Any other query executed except DELETE
// Connection Failures
// Operation Timeout
// Operation performed during state transfer
}
}
catch (Exception ex)
{
// Any generic exception like ArgumentException, ArgumentNullException
}
Additional Resources
NCache provides sample application for SQL Searching on GitHub.
See Also
Locking Data For Concurrency Control
SQL Search for Objects
SQL Search for Keys Syntax and Usage
SQL IN Operator Syntax and Usage
SQL Like Operator Syntax and Usage
Query Operators
Search Cache with LINQ