Package ch.tocco.nice2.dbrefactoring.api
Interface DbCheckReport
- All Known Implementing Classes:
DbCheckReportImpl
public interface DbCheckReport
A report for a diff of two databases.
-
Method Summary
Modifier and TypeMethodDescription@Nullable Changelog
Returns the db changelog that represents the difference between the two compared databases.long
Returns the milliseconds the db check lasted.Returns the sql statements that represent the difference between the two databases.long
Returns the point in time where the db check has been started.Returns a report summary.
-
Method Details
-
getStartTime
long getStartTime()Returns the point in time where the db check has been started. -
getDuration
long getDuration()Returns the milliseconds the db check lasted. -
getSummary
String getSummary()Returns a report summary. -
getChangelogDiff
Returns the db changelog that represents the difference between the two compared databases. If there is no difference,null
is returned. -
getSqlDiff
Returns the sql statements that represent the difference between the two databases.
-