libdb/lang/sql/jdbc/SQLite/Profile.java

20 lines
379 B
Java
Raw Normal View History

2011-09-13 17:44:24 +00:00
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);
}