Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Appcontext params"

Line 3: Line 3:
 
<br>  
 
<br>  
  
{| cellspacing="1" cellpadding="1" border="1" style="width: 1197px; height: 889px;"
+
{| cellspacing="1" cellpadding="1" border="1" style="width: 1080px; height: 889px;"
 
|-
 
|-
 
| '''Component<br>'''  
 
| '''Component<br>'''  
Line 26: Line 26:
 
| Close XML InputStream after it is used.(true or false)<br>
 
| Close XML InputStream after it is used.(true or false)<br>
 
|-
 
|-
| Data Engine (org.eclipse.birt.data.engine.api)<br>  
+
| rowspan="3" | <br> Data Engine (org.eclipse.birt.data.engine.api)<br>
 
| DataEngine.DATA_SET_CACHE_ROW_LIMIT<br>  
 
| DataEngine.DATA_SET_CACHE_ROW_LIMIT<br>  
 
|  
 
|  
Line 34: Line 34:
  
 
|-
 
|-
| <br>
 
 
| DataEngine.MEMORY_BUFFER_SIZE<br>  
 
| DataEngine.MEMORY_BUFFER_SIZE<br>  
 
| Memory per Query that is used before caching to disk. Defaults to 10MB. Used inside and outside of designer.<br>
 
| Memory per Query that is used before caching to disk. Defaults to 10MB. Used inside and outside of designer.<br>
 
|-
 
|-
| <br>
 
 
| DataEngine.MEMORY_DATA_SET_CACHE<br>  
 
| DataEngine.MEMORY_DATA_SET_CACHE<br>  
| Change setting to clear<br>
+
|  
 +
This setting allows user to cache a data set in memory. If Set to a number equal or less than zero, the function is disabled. If set to a positive number, exactly that number of rows will be saved to memory. Should only be used in a design situation.
 +
 
 +
Change setting to clear
 +
 
 
|-
 
|-
 
| <br>  
 
| <br>  

Revision as of 04:00, 25 March 2011

Available Appcontext() Parameters


Component
Key
Usage
JDBC Datasource (org.eclipse.birt.report.data.oda.jdbc)
IConnectionFactory.DRIVER_CLASSPATH
Can be used to manually set the driver classpath that the JDBC plugin uses to locate a driver.
IConnectionFactory.PASS_IN_CONNCTION
Can be used to manually pass in a JDBC connect to be used by the JDBC plugin.
IConnectionFactory.CLOSE_PASS_IN_CONNECTION
Manually set whether the JDBC connections is closed after usage by the plugin. Defaults to true.
XML Data Source (org.eclipse.datatools.enablement.oda.xml)
Constants.APPCONTEXT_INPUTSTREAM
Sets the InputStream for an XML Datasource. Example ByteArrayInputStream.
Constants.APPCONTEXT_CLOSEINPUTSTREAM
Close XML InputStream after it is used.(true or false)

Data Engine (org.eclipse.birt.data.engine.api)
DataEngine.DATA_SET_CACHE_ROW_LIMIT

This settings allows user to cache a data set in disk. If set to negative value, all rows in dataset will be cached. If set to zero, the function is disabled. If set to positive number, specific number of rows will be cached. Should only be used in a design situation.

Change setting to clear.

DataEngine.MEMORY_BUFFER_SIZE
Memory per Query that is used before caching to disk. Defaults to 10MB. Used inside and outside of designer.
DataEngine.MEMORY_DATA_SET_CACHE

This setting allows user to cache a data set in memory. If Set to a number equal or less than zero, the function is disabled. If set to a positive number, exactly that number of rows will be saved to memory. Should only be used in a design situation.

Change setting to clear





Back to the top