Section | ||||||||
---|---|---|---|---|---|---|---|---|
|
...
- Stop . You do not have to stop the Insight Server.
Create a folder named <frevvo-home>\config i.e. c:\frevvo\config.
Create the file <frevvo-home>\config\configuration.xml. Your SQL statements will be added to this file.
Copy/Paste the follow text into configuration.xml. This skeleton defines test querysets named myStore and BIRT to get you started.
Code Block <dbconnector> <queryset name="myStore"> </queryset> <queryset name="BIRT"> </queryset> </dbconnector>
Create the file <frevvo-home>\tomcat\conf\frevvo-config.properties. If this file already exists you will add your database datasource properties to it.
- Copy/Paste one of the two following samples into frevvo-config.properties.
Edit the frevvo.connectors.database.configuration line to be the path to your configuration.xml file.
Code Block title Use this sample if all querysets use the same database frevvo.connectors.database.configuration=file:///C:/frevvo/config/configuration.xml dbconnector.queryset.resource-def.url=<the url to your database> dbconnector.queryset.resource-def.user=<your database username> dbconnector.queryset.resource-def.password=<your database password>
The @myStore and @BIRT in the this sample will be your queryset names in your configuration.xml.
Code Block title Use this sample if querysets use different databases frevvo.connectors.database.configuration=file:///C:/frevvo/config/configuration.xml dbconnector.queryset@myStore.resource-def.url=<the url to your database #1> dbconnector.queryset@myStore.resource-def.user=<your database username> dbconnector.queryset@myStore.resource-def.password=<your database password> dbconnector.queryset@BIRT.resource-def.url=<the url to your database #2> dbconnector.queryset@BIRT.resource-def.user=<your database username> dbconnector.queryset@BIRT.resource-def.password=<your database password>
Datasource Property Examples
Your Datasource Properties depend on your JDBC driver type.
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
MySQL exampleThis sample shows a configuration.xml queryset named "alltest" against a MySql database named "test" where the database login user is "root" and the password is "root".
SQL Server ExampleThis example connects to a SQL Server driver
SQL jTDS ExampleThis example connects to SQL Server using the jTDS driver. The jTDS driver requires the additional validationQuery property.
If your SQL server has multiple SQL named instances, use the url instance parameter as shown here for an instance named xyzzy.
Oracle 11gThis example connects to an Oracle 11g driver.
|
...
If you prefer to define your datasources on the container level, the recommended approach is to define the datasource in the container and then use a resource-ref in the Database Connector properties file to reference it..
Info |
---|
Using <Resource-ref> to define datasources is not supported if you are running the Database Connector in Standalone mode. Use <Resource-def> instead. |
...
Add the enabled= attribute with a value of false to the <querySet/> or individual <query> elements in the configuration.xml file to completely disable it.
Code Block <dbconnector> <querySet name="BIRT" enabled="false" ...>
The same can be done by adding the enabled property with a value of false as shown below to the dbconnector.properties(standalone bundle) or frevvo-config.properties (tomcat bundle).
Code Block dbconnector.querySet@<queryset name>.enabled=false
This property disables all querysets. Add it to the dbconnector.properties(standalone bundle) or frevvo-config.properties (tomcat bundle).
Code Block dbconnector.querySet.enabled=false
...