Click or drag to resize
ISphinxQLExecutor Interface
Provides methods to execute SphinxQL commands.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
public interface ISphinxQLExecutor

The ISphinxQLExecutor type exposes the following members.

Methods
  NameDescription
Public methodCode exampleExecuteNonQuery
Executes a non-query command.
Public methodCode exampleQueryT(String, Object)
Executes the given SphinxQL query and returns a list of results of the given type.
Public methodCode exampleQueryT(String, QueryMetadata, Object)
Executes the given SphinxQL query and returns a list of results of the given type along with the query metadata. Note: 'SHOW META' is automatically appended to the query.
Public methodCode exampleQueryMulti
Executes the given SphinxQL multi-query and returns an instance of MultiQueryResult that can be used to retrieve the results for the queries.
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also