Teradata Plugin¶
Warning
This unsupported plugin has not been maintained for a long time, and it’s about to be removed from the codebase.
Supports direct access to a Teradata database.
References
Maven
<dependency>
   <groupId>org.geotools.jdbc</groupId>
   <artifactId>gt-jdbc-teradata</artifactId>
   <version>${geotools.version}</version>
 </dependency>
Note that the groupId is org.geotools.jdbc for this and other JDBC plugin modules.
Connection Parameters¶
| Parameter | Description | 
|---|---|
| 
 | Must be the string  | 
| 
 | Machine name or IP address to connect to | 
| 
 | Port number to connect to, default is 1025 | 
| 
 | The database to connect to, usually same as  | 
| 
 | User name | 
| 
 | Password | 
Access¶
Example use:
java.util.Map params = new java.util.HashMap();
params.put( "dbtype", "teradata");
params.put( "host", "localhost");
params.put( "port", 1025);
params.put( "user", "geotools");
params.put( "passwd", "geotools");
DataStore dataStore=DataStoreFinder.getDataStore(params);
Setup¶
- JDBC Driver - GeoTools is unable to ship the Teradata JDBC driver with the standard distribution. It must be downloaded from Teradata separately.