- Enclosing interface:
- Database
public static interface Database.QueryCounter
Counts queries for statistics.
-
Method Summary
-
Method Details
-
select
void select()Count one select query -
insert
void insert()Count one insert query -
update
void update()Count one update query -
delete
void delete()Count one delete query -
other
void other()Count one query which does not fall under select, insert, delete or update
-