Click or drag to resize

SQLOutputRowConversion Interface

Implement this interface when providing a callback for SQL row result processing for a statement, converting each row's values into a PONO.

Rows can also be skipped via this callback, determined by the implementation returning a null value for a row.

An instance of the class implementating this interface exists typically per statement that the callback has been registered for by means of EPL statement annotation.

Namespace:  com.espertech.esper.common.client.hook.type
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public interface SQLOutputRowConversion

The SQLOutputRowConversion type exposes the following members.

Methods
  NameDescription
Public methodGetOutputRow
Returns the PONO object that represents a row of the SQL query result, or null to indicate to skip this row.
Public methodGetOutputRowType
Return the PONO class that represents a row of the SQL query result.
Top
See Also