Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

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

...

AttributeDescription

sourceName 

Text name for the DataSource. For example, “Twitter Connector”. 

sourceCode 

A unique text code for the DataSource. For example, “TWITTER_CONNECTOR”. 

driverName 

The text class name of the DataSource. For example, “com.code.TwitterConnector”. 

sourceType 

This should always be 

DBType.THIRDPARTY 

be DBType.THIRDPARTY.

 

Example implementation:

Code Block
languagejava
public SkiTeamMetaData() { 

			super(); 

			sourceName = "Ski Team Source"; 
			sourceCode = "SKI_DATA_SOURCE"; 
			driverName = SkiTeamDataSource.class.getName(); 
			sourceType = DBType.THIRD_PARTY; 

} 
 

...