Using SQL Data Sources
Our sample projects and report templates can help you learn the basics of working with our products.Dashboards can pull data from SQL databases, with the connection handled on the server through the onBeginProcessData event.
Preparing the data. Read or create the data source, register it in the dashboard dictionary, synchronize the schema, and render with the supplied records.
Preparing the data. Read or create the data source, register it in the dashboard dictionary, synchronize the schema, and render with the supplied records.
$viewer->onBeginProcessData = function (StiDataEventArgs $args) {
if ($args->connection == 'MyConnectionName')
$args->connectionString = 'Server=localhost; Database=northwind; UserId=root; Pwd=;';
if ($args->dataSource == 'MyDataSource')
$args->queryString = 'SELECT * FROM MyTable';
};
$viewer->process();Handling onBeginProcessData on the server keeps database credentials out of the client; you override the connection string and query for each named data source.