Package SQLite
Interface Profile
-
public interface ProfileCallback interface for SQLite's profile function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprofile(String stmt, long est)Callback to profile (ie log) one SQL statement with its estimated execution time.
-
-
-
Method Detail
-
profile
void profile(String stmt, long est)
Callback to profile (ie log) one SQL statement with its estimated execution time.- Parameters:
stmt- SQL statement stringest- estimated execution time in milliseconds.
-
-