link start!
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package net.sourceforge.jtds.jdbc.cache;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public interface StatementCache {
|
||||
Object get(String str);
|
||||
|
||||
Collection getObsoleteHandles(Collection collection);
|
||||
|
||||
void put(String str, Object obj);
|
||||
|
||||
void remove(String str);
|
||||
}
|
||||
Reference in New Issue
Block a user