SQL queries
Leverage the power of ANSI SQL within custom processors using the in-memory database
Overview
SQLQueryInterface APIs
Package
com.fractalworks.streams.sdk.analytics.sql.SQLQueryInterfaceExamples
try (Statement statement = SQLQueryInterface.getConnection().createStatement()) {
statement.execute(query);
} catch (SQLException e) {
throw new FailedSQLProcessingException(String.format("Failed to execute query [%s]", query), e);
}Database Ops
Table Management
Parameter
Description
Type
Parameter
Description
Type
Parameter
Description
Type
Parameter
Description
Type
Parameter
Description
Type
Query Processing
Parameter
Description
Type
Parameter
Description
Type
Parameter
Description
Type
Data Structures
SQLQueryResults
TableMetaData
Last updated