jsqlite.Profile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spatialite-android Show documentation
Show all versions of spatialite-android Show documentation
Vector map library written in Java - running on Android and Desktop.
package jsqlite;
/**
* 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);
}