Class SQLTableSpec
- java.lang.Object
-
- com.orchestranetworks.addon.dint.dataconnector.spec.TableSpec
-
- com.orchestranetworks.addon.dint.dataconnector.spec.SQLTableSpec
-
- Direct Known Subclasses:
SQLSourceTableSpec,SQLTargetTableSpec
public abstract class SQLTableSpec extends com.orchestranetworks.addon.dint.dataconnector.spec.TableSpecSpecification forSQLSourceTableSpecandSQLTargetTableSpec.- Since:
- 4.5.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDatabaseName()Returns the name of the database.javax.sql.DataSourcegetDataSource()Returns the data source of the database connection.java.lang.StringgetSchemaName()Returns the name of the schema.java.lang.StringgetTableName()Returns the name of the table or view.
-
-
-
Method Detail
-
getTableName
public final java.lang.String getTableName()
Returns the name of the table or view.
-
getSchemaName
public final java.lang.String getSchemaName()
Returns the name of the schema.
-
getDatabaseName
public final java.lang.String getDatabaseName()
Returns the name of the database.
-
getDataSource
public final javax.sql.DataSource getDataSource()
Returns the data source of the database connection.
-
-