Package org.apache.openjpa.jdbc.sql
Class SQLErrorCodeReader
- java.lang.Object
-
- org.apache.openjpa.jdbc.sql.SQLErrorCodeReader
-
public class SQLErrorCodeReader extends Object
Parses XML content of SQL Error State codes to populate error codes for a given Database Dictionary.- Author:
- Pinaki Poddar
-
-
Field Summary
Fields Modifier and Type Field Description static String
ERROR_CODE_DELIMITER
static Map<String,Integer>
storeErrorTypes
-
Constructor Summary
Constructors Constructor Description SQLErrorCodeReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getDictionaries(InputStream in)
void
parse(InputStream in, String dictName, DBDictionary dict)
Parses given stream of XML content for error codes of the given database dictionary name.
-
-
-
Field Detail
-
ERROR_CODE_DELIMITER
public static final String ERROR_CODE_DELIMITER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDictionaries
public List<String> getDictionaries(InputStream in)
-
parse
public void parse(InputStream in, String dictName, DBDictionary dict)
Parses given stream of XML content for error codes of the given database dictionary name. Populates the given dictionary with the error codes.
-
-