All Downloads are FREE. Search and download functionalities are using the official Maven repository.

SQLite.Profile Maven / Gradle / Ivy

package SQLite;

/**
 * Callback interface for SQLite's profile function.
 */

public interface Profile {

    /**
     * Callback to profile (ie log) one SQL statement
     * with its estimated execution time.
     *
     * @param stmt SQL statement string
     * @param est  estimated execution time in milliseconds.
     */

    public void profile(String stmt, long est);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy