|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ISqlKeywordDictionary
Provides access to the members that control the dictionary for SQL Keywords.
ISqlKeywordDictionary references can be accessed through the IFieldChecker.ValidateDictionary property. This interface can be used to determine whether a word is a keyword in SQL.
Method Summary | |
---|---|
void |
add(String reservedWord)
Adds a new illegal field name. |
void |
empty()
Clears all the invalid field names. |
boolean |
findKeyword(String keyword)
Indicates if the word is illegal (Legal = false, Illegal = true). |
void |
getCount(int[] reservedWordCount)
Number of invalid field names. |
void |
remove(String reservedWord)
Removes a illegal field name form the list. |
void |
reset()
Resets the invalid field names to the state before you called Clear, Add, or Remove. |
void |
setName(String rhs1)
Provides access to members that maintain a list of SQL Keywords. |
Method Detail |
---|
void setName(String rhs1) throws IOException, AutomationException
rhs1
- The rhs1 (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void getCount(int[] reservedWordCount) throws IOException, AutomationException
reservedWordCount
- The reservedWordCount (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void add(String reservedWord) throws IOException, AutomationException
reservedWord
- The reservedWord (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void remove(String reservedWord) throws IOException, AutomationException
reservedWord
- The reservedWord (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void reset() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void empty() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean findKeyword(String keyword) throws IOException, AutomationException
Returns true if the string provided is a keyword; false otherwise. If false is returned, it does not necessarily mean the word is a valid field or table name, only that it is not reserved.
keyword
- The keyword (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |