Home | History | Annotate | Download | only in SQLite
      1 package SQLite;
      2 
      3 /**
      4  * Callback interface for SQLite's profile function.
      5  */
      6 
      7 public interface Profile {
      8 
      9     /**
     10      * Callback to profile (ie log) one SQL statement
     11      * with its estimated execution time.
     12      *
     13      * @param stmt SQL statement string
     14      * @param est  estimated execution time in milliseconds.
     15      */
     16 
     17     public void profile(String stmt, long est);
     18 }
     19 
     20