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