Name

jdbc — Defines a JDBC data source.

Synopsis

<jdbc> ... </jdbc>

Description

This element is the beggining of a JDBC data source definition. It must be followed by driver element and a connection element. A jdbc data source can appear at an input or output definition.

Example at input

Example 15. JDBC data source at input definition.

<project name="testProject">
	<input>
		<jdbc>
			<driver>
				...
			</driver>
			<connection>
				...
			</connection>
		</jdbc>
	</input>
</project>
					
					

Example at output

Example 16. JDBC data source at output definition.

<project name="testProject">
	...
	<metadata>
		...
	</metadata>
	<output>
		<jdbc>
			<driver>
				...
			</driver>
			<connection>
				...
			</connection>
		</jdbc>
	</output>
</project>