Home | History | Annotate | Download | only in SQLite
      1 package SQLite;
      2 
      3 /**
      4  * Callback interface for SQLite's trace function.
      5  */
      6 
      7 public interface Trace {
      8 
      9     /**
     10      * Callback to trace (ie log) one SQL statement.
     11      *
     12      * @param stmt SQL statement string
     13      */
     14 
     15     public void trace(String stmt);
     16 }
     17 
     18