All Downloads are FREE. Search and download functionalities are using the official Maven repository.

SQLite.Trace Maven / Gradle / Ivy

package SQLite;

/**
 * Callback interface for SQLite's trace function.
 */

public interface Trace {

    /**
     * Callback to trace (ie log) one SQL statement.
     *
     * @param stmt SQL statement string
     */

    public void trace(String stmt);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy