mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
19 lines
379 B
Java
19 lines
379 B
Java
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);
|
|
}
|
|
|