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

net.java.ao.test.SqlTracker Maven / Gradle / Ivy

The newest version!
package net.java.ao.test;

import net.java.ao.DatabaseProvider;

import java.util.List;

import static com.google.common.collect.Lists.newLinkedList;

/**
 *
 */
public final class SqlTracker implements DatabaseProvider.SqlListener {
    private final List sqlStatements = newLinkedList();

    public void onSql(String sql) {
        sqlStatements.add(sql);
    }

    public boolean isSqlExecuted() {
        return !sqlStatements.isEmpty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy