com.esri.arcgis.geodatabase
Class SQLCheck

java.lang.Object
  extended by com.esri.arcgis.geodatabase.SQLCheck
All Implemented Interfaces:
ISQLCheck, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class SQLCheck
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, ISQLCheck

ESRI Sql check object.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also:
Serialized Form

Constructor Summary
SQLCheck()
          Constructs a SQLCheck using ArcGIS Engine.
SQLCheck(Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
SQLCheck theSQLCheck = (SQLCheck) obj;
 
Method Summary
 void checkSelectList(String selctList)
          Checks select list for invalid characters.
 void checkWhereClause(String whereClause)
          Checks where clause for invalid characters.
 boolean equals(Object o)
          Compare this object with another
static String getClsid()
          getClsid.
 int hashCode()
          the hashcode for this object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

SQLCheck

public SQLCheck()
         throws IOException,
                UnknownHostException
Constructs a SQLCheck using ArcGIS Engine.

Throws:
IOException - if there are interop problems
UnknownHostException - if there are interop problems

SQLCheck

public SQLCheck(Object obj)
         throws IOException
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
SQLCheck theSQLCheck = (SQLCheck) obj;

Construct a SQLCheck using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to SQLCheck.

Parameters:
obj - an object returned from ArcGIS Engine or Server
Throws:
IOException - if there are interop problems
Method Detail

getClsid

public static String getClsid()
getClsid.


equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

checkSelectList

public void checkSelectList(String selctList)
                     throws IOException,
                            AutomationException
Checks select list for invalid characters.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
checkSelectList in interface ISQLCheck
Parameters:
selctList - The selctList (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

checkWhereClause

public void checkWhereClause(String whereClause)
                      throws IOException,
                             AutomationException
Checks where clause for invalid characters.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
checkWhereClause in interface ISQLCheck
Parameters:
whereClause - The whereClause (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.