Interface IDatabaseSupplier<T>
-
- All Known Implementing Classes:
AddBucketPath
,AddResourceBundle
,CancelLease
,CitusDistributionCheckDAO
,DerbyDoesForeignKeyConstraintExist
,DerbyDoesTableExist
,DerbyListSequencesForSchema
,DerbyListTablesForSchema
,DerbyListViewsForSchema
,DerbyLockDiag
,GetLastProcessedLineNumber
,GetLatestVersionDAO
,GetLease
,GetLeasePostgresql
,GetLogicalResourceNeedsV0014Migration
,GetLogicalResourceNeedsV0027Migration
,GetResourceChangeLogEmpty
,GetResourceRefsForBundleLine
,GetResourceTypeList
,GetSchemaVersion
,GetSequenceNextValueDAO
,GetXXLogicalResourceNeedsMigration
,PostgresDoesConstraintExist
,PostgresDoesForeignKeyConstraintExist
,PostgresDoesIndexExist
,PostgresDoesTableExist
,PostgresDoesViewExist
,PostgresListSequencesForSchema
,PostgresListTablesForSchema
,PostgresListViewsForSchema
,ReadResourceTypesDAO
,RegisterLoaderInstance
,ResourceTypesReader
,TableHasData
,UnusedTableRemovalNeedsV0021Migration
public interface IDatabaseSupplier<T>
Represents a statement runnable byIDatabaseAdapter
returning a result of type T.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
run(IDatabaseTranslator translator, java.sql.Connection c)
Execute the statement using the connection and return the value
-
-
-
Method Detail
-
run
T run(IDatabaseTranslator translator, java.sql.Connection c)
Execute the statement using the connection and return the value- Parameters:
translator
- to translate any exceptionsc
-
-
-