Package net.sourceforge.jtds.jdbc.cache
Class SQLCacheKey
- java.lang.Object
-
- net.sourceforge.jtds.jdbc.cache.SQLCacheKey
-
public class SQLCacheKey extends java.lang.Object
Cache key for an SQL query, consisting of the query and server type, major and minor version.- Version:
- $Id: SQLCacheKey.java,v 1.2.2.1 2009-07-29 12:10:42 ickzon Exp $
- Author:
- Brett Wooldridge, Alin Sinpalean
-
-
Field Summary
Fields Modifier and Type Field Description private int
hashCode
private int
majorVersion
private int
minorVersion
private int
serverType
private java.lang.String
sql
-
Constructor Summary
Constructors Constructor Description SQLCacheKey(java.lang.String sql, JtdsConnection connection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object object)
int
hashCode()
-
-
-
Constructor Detail
-
SQLCacheKey
public SQLCacheKey(java.lang.String sql, JtdsConnection connection)
-
-