Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The guide provides specification of Siddhi Query Language 3.0 with examples

This guide provides instructions to use the Siddhi Query Language 3.0 with WSO2 CEP DAS using examples.

Table of Contents

...

Functions parameters can be attributes (  int , long, float, double, string, bool, object ), results of other functions, results of mathematical or logical expressions or time parameters. 

...

Code Block
languagesql
linenumberstrue
@From(eventtable='rdbms', datasource.name='AnalyticsDataSource', table.name='RoomTable')
define table RoomTypeTable (roomNo int, type string);
Info
titleNote

The datasource.name given here is injected to the Siddhi engine by the CEP DAS server. To configure data sources in the CEPDAS, see     Datasources   in the Admin Guide.

E.g. Create an event table with name RoomTypeTable having attributes room number as int & type as string, backed by MySQL table named RoomTable from the database cepdb located at localhost:3306 having user name "root" and password "root". 

...

  • Function Extension 
  • Aggregate Function Extension 
  • Window Extension 
  • Stream Function Extension
  • Stream Processor Extension

...

---------------------

Child pages (Children Display)