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 ChangelogReturns the db changelog that represents the difference between the two compared databases.longReturns the milliseconds the db check lasted.Returns the sql statements that represent the difference between the two databases.longReturns 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,nullis returned. -
getSqlDiff
Returns the sql statements that represent the difference between the two databases.
-