HomeSort by relevance Sort by last modified time
    Searched refs:thePublicStatics (Results 1 - 5 of 5) sorted by null

  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ResultSetTest.java 33 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
34 thePublicStatics.put("CLOSE_CURSORS_AT_COMMIT",
36 thePublicStatics.put("HOLD_CURSORS_OVER_COMMIT", new java.lang.Integer(
38 thePublicStatics.put("CONCUR_UPDATABLE", new java.lang.Integer(1008));
39 thePublicStatics.put("CONCUR_READ_ONLY", new java.lang.Integer(1007));
40 thePublicStatics.put("TYPE_SCROLL_SENSITIVE", new java.lang.Integer(
42 thePublicStatics.put("TYPE_SCROLL_INSENSITIVE", new java.lang.Integer(
44 thePublicStatics.put("TYPE_FORWARD_ONLY", new java.lang.Integer(1003));
45 thePublicStatics.put("FETCH_UNKNOWN", new java.lang.Integer(1002));
46 thePublicStatics.put("FETCH_REVERSE", new java.lang.Integer(1001))
    [all...]
ParameterMetaDataTest.java 33 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
34 thePublicStatics.put("parameterModeOut", new Integer(4));
35 thePublicStatics.put("parameterModeInOut", new Integer(2));
36 thePublicStatics.put("parameterModeIn", new Integer(1));
37 thePublicStatics.put("parameterModeUnknown", new Integer(0));
38 thePublicStatics.put("parameterNullableUnknown", new Integer(2));
39 thePublicStatics.put("parameterNullable", new Integer(1));
40 thePublicStatics.put("parameterNoNulls", new Integer(0));
76 Object expectedValue = thePublicStatics.get(fieldName);
StatementTest.java 33 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
34 thePublicStatics.put("NO_GENERATED_KEYS", new Integer(2));
35 thePublicStatics.put("RETURN_GENERATED_KEYS", new Integer(1));
36 thePublicStatics.put("EXECUTE_FAILED", new Integer(-3));
37 thePublicStatics.put("SUCCESS_NO_INFO", new Integer(-2));
38 thePublicStatics.put("CLOSE_ALL_RESULTS", new Integer(3));
39 thePublicStatics.put("KEEP_CURRENT_RESULT", new Integer(2));
40 thePublicStatics.put("CLOSE_CURRENT_RESULT", new Integer(1));
74 Object expectedValue = thePublicStatics.get(fieldName);
ConnectionTest.java 33 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
34 thePublicStatics.put("TRANSACTION_SERIALIZABLE", new Integer(8));
35 thePublicStatics.put("TRANSACTION_REPEATABLE_READ", new Integer(4));
36 thePublicStatics.put("TRANSACTION_READ_COMMITTED", new Integer(2));
37 thePublicStatics.put("TRANSACTION_READ_UNCOMMITTED", new Integer(1));
38 thePublicStatics.put("TRANSACTION_NONE", new Integer(0));
71 Object expectedValue = thePublicStatics.get(fieldName);
ResultSetMetaDataTest.java 33 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
34 thePublicStatics.put("columnNullableUnknown", new Integer(2));
35 thePublicStatics.put("columnNullable", new Integer(1));
36 thePublicStatics.put("columnNoNulls", new Integer(0));
66 Object expectedValue = thePublicStatics.get(fieldName);

Completed in 106 milliseconds