Checks whether this PreparedStatement is up to date and its activation class is identical to the supplied generated class. A call to {@code upToDate(gc)} is supposed to perform the same work as the following codein one atomic operation:
getActivationClass() == gc && upToDate()@param gc a generated class that must be identical to {@code getActivationClass()} for this method to return {@code true} @return {@code true} if this statement is up to date and its activationclass is identical to {@code gc}, {@code false} otherwise @see PreparedStatement#upToDate() @see #getActivationClass()
|
|
|
|